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 malloc, calloc and realloc?
How do you work around them?
Difference between Call by pointer and by reference.
Explain encapsulation in C++.
What does it mean to declare a member function as static in C++?
What is an abstract class?
Write a C++ Program to Find Sum and Average of three numbers.
What is the difference between Stack and Queue in C++?
0 Answers Global Logic, iNautix,
What is the 4 difference between delete[] and delete?
write a program To generate the Fibonacci Series.
In C++ what is the meaning of data hiding?
What Is A Default Constructor in C++ ?