Hello World

The simplest C++ program!!

#include <iostream.h>
 
int main(){
   cout << "Hello world!\n";
   return 0;
}

Pretty much self explanatory.

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License