What is the use of unnamed namespaces in OOPS?
The only advantage I know is that they dont need the scope
resolution operator while accessing them. I want to know
some other advantages of unnamed namespaces...
Answer Posted / c++ coder
in addition to the advantage mentioned above , there is one
more that the namespace is local to the file and one cannot
use it into another by 'using namespace' since it is
unnamed.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is abstraction in oop with example?
Can destructor be overloaded?
How to use CMutex, CSemaphore in VC++ MFC
What is pointer in oop?
Can abstract class have normal methods?
Is html an oop?
i am getting an of the type can not convert int to int *. to overcome this problem what we should do?
What is inheritance in simple words?
write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory
What is abstract class in oop?
What is a null tree?
what is different between oops and c++
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).
What is the advantage of oop over procedural language?
Is enum a class?