How to use the using keyword and is it related to #define ?
What is the "using" keyword in c++?
hello @prerak_semwal
it is used to
- Bring a specific member from the namespace into the current scope.
- Bring all members from the namespace into the current scope.
read about namespaces for clarity