Define namespace.
Answer / beena
It is a feature in c++ to minimize name collisions in the global name space. This namespace keyword assigns a distinct name to a library that allows other libraries to use the same identifier names without creating any name collisions. Furthermore, the compiler uses the namespace signature for differentiating the definitions.
Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between virtual functions and pure virtual functions?
What are the costs and benefits of using exceptions?
Factory Method C++ – How to delete pointers returned by it
dynamic scoping is
How can you force the compiler to not generate them?
What are the different scope C++ provide ?
Explain why C++ is not purely Object Oriented Language
Explain encapsulation in C++.
What does it mean to declare a member function as static in C++?
Declare a pointer to a function that takes a char pointer as argument and returns a void pointer.
Can we provide one default constructor for our class?
How will you print a list of all unique words from a string which may contain repeated words?