Mega Code Archive

 
Categories / C++ Tutorial / Language Basics
 

Using namespace std

#include <iostream> using namespace std; int main() {    // Print hello world on the screen    cout << "Hello World";    return 0; } Hello World"