The standard namespace used commonly in C++ is _______. 

  • conio
  • iostream 
  • stdlib 
  • std 
In C++, the "std" stands for the standard namespace. A namespace is a declarative region that provides a scope to the identifiers inside it. Using the "std" namespace, we can access features of the C++ Standard Library without prepending their names with std:: each time.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *