What is std namespace in c++?



What is std namespace in c++?..

Answer / Abhishek Mukherjee

In C++, the 'std' namespace contains the fundamental library of Standard Template Library (STL) classes and functions that provide common data structures and algorithms. It includes containers like vectors, lists, maps, sets, etc., and algorithms like sort, find, min_element, max_element, transform, etc.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

what is polymorphism?

14 Answers   Accenture,


Can static member variables be private?

1 Answers  


What is a Default constructor?

2 Answers  


Explain stack unwinding.

1 Answers  


What are all predefined data types in c++?

1 Answers  


What is the difference between cin.read() and cin.getline()?

1 Answers  


Explain the uses oof nested class?

1 Answers  


Is c++ the hardest programming language?

1 Answers  


How the programmer of a class should decide whether to declare member function or a friend function?

1 Answers  


Why do we use constructor?

1 Answers  


Floating point representation and output seems to be compiler dependent?

1 Answers  


What is switch case in c++ syntax?

1 Answers  


Categories