DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
C++ - Hello World
/*
*
* Semplice esempio di Hello World !!!
*/
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
cout << "Hello World !!!" << endl; // endl equivale ad un \n
return 0;
}






Comments
Snippets Manager replied on Thu, 2006/02/09 - 1:52pm
Mateusz Loskot replied on Mon, 2006/01/02 - 11:22am