Answer Posted / snigdhadeb ash.
Namespace is a new concept introduced by the ANSI C++
standards committee. This defines a scops for the
identifiers that are used in a program. For using the
identifiers defined in the namespace scope we must include
the using directive,like
using namespace std;
Here , std is the namespace where ANSI C++ standard class
libraries are defined. All ANSI C++ programs must include
this directive. This will bring all the identifiers defined
in std to the current global scope. using and namespace are
the new keywords of C++.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are put and get pointers?
What is the size of integer variable?
What is function prototyping?
Explain stack & heap objects?
What is the difference between an external iterator and an internal iterator? Describe an advantage of an external iterator?
What are structs in c++?
In what situations do you have to use initialization list rather than assignment in constructors?
Are c and c++ different?
What are the types of pointer?
How would perform Pattern Matching in C++?
What are c++ manipulators?
How do you find out if a linked-list has an end?
A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
What is the difference between an array and a list?
What are the c++ access specifiers?