InterviewSolution
Saved Bookmarks
| 1. |
What Is The Use Of 'using' Declaration In C++? |
|
Answer» A USING DECLARATION in C++ makes it POSSIBLE to use a name from a NAMESPACE without the SCOPE operator. A using declaration in C++ makes it possible to use a name from a namespace without the scope operator. |
|