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 |
what is polymorphism?
Can static member variables be private?
What is a Default constructor?
Explain stack unwinding.
What are all predefined data types in c++?
What is the difference between cin.read() and cin.getline()?
Explain the uses oof nested class?
Is c++ the hardest programming language?
How the programmer of a class should decide whether to declare member function or a friend function?
Why do we use constructor?
Floating point representation and output seems to be compiler dependent?
What is switch case in c++ syntax?