What is Namespace?
Answers were Sorted based on User's Feedback
Answer / saroj das ,balsore
a namespace is a simply declarative region the main purpose
is is to localize the names of identifiers to avoid name
name collisions .
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / mohamed shafi k k
a namespace is a simply declarative region the main purpose
is to localize the names of identifiers to avoid name
name collisions .
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / kishore
A namespace is a simply declarative region the main purpose
is to localize the names of idetifies.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / satheeshkumar
a namespace is a simply declarative region the main purpose
is is to localize the names of identifiers to avoid name
name collisions .
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / sandeep mannarakkal
Name space is a global declarative region where name are uniquely getting identified.
it is possible to insert 1) functions 2) variables 3) class/Structure 4) namespaces inside namespace.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain storage qualifiers in c++.
Why do we use pointers in c++?
Write a program to calculate the BMI of a person using the formula BMI = weight/height2.
How can I disable the "echo" feature?
Is rust better than c++?
What do you mean by pure virtual functions in C++? Give an example?
What is a manipulative person?
Why do we need constructors in c++?
What is buffer and example?
What are the advantages of using pointers in a program?
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
What is difference between array and vector in c++?