Use namespace std : using « Language Basics « C++ Tutorial






#include <iostream>
int main()
{
   using namespace std;
  
   cout << "a new line ";
   cout <<  endl;

   return 0;
}
a new line








1.13.using
1.13.1.Use the using keyword
1.13.2.Use namespace std