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 is const pointer and const reference?
Can we delete this pointer in c++?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.
What is purpose of abstract class?
What do you mean by storage classes?
Does improper inheritance have a potential to wreck a project?
Is sorted c++?
How to declare a function pointer?
Can you please explain the difference between using macro and inline functions?
What are c++ storage classes?
What is object in c++ example?
What is data structure in c++?
What is #include sstream?
What is c++ and its features?