What is the "using" keyword in c++?

How to use the using keyword and is it related to #define ?

hello @prerak_semwal
it is used to

  1. Bring a specific member from the namespace into the current scope.
  2. Bring all members from the namespace into​ the current scope.

read about namespaces for clarity