Google News
logo
CPP - Quiz(MCQ)
What is std in C++?
A)
std is a standard class in C++
B)
std is a standard header file in C++
C)
std is a standard namespace in C++
D)
std is a standard file reading header in C++

Correct Answer :   std is a standard namespace in C++


Explanation : std is a standard namespace present in C++ which contains different stream classes and objects like cin, cout, etc. and other standard functions.

Advertisement