Mega Code Archive

 
Categories / C++ Tutorial / Language Basics
 

Use namespace std

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