0
What is the purpose of the keyword "using"?
I don't know
2 Answers
0
To avoid naming conflicts we use namespaces,By namespaces, we can create two variables or member functions having the same name
Using-Directive tells the compiler to use the namespace that is followed
eg: using namespace std; it tells the compiler to use the standard library namespace
0
thank you