Return to Snippet

Revision: 1779
at November 10, 2006 00:05 by whitetiger


Updated Code
/*
 * 
 * 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;
}

Revision: 1778
at November 9, 2006 23:55 by whitetiger


Initial Code
/*
 * 
 * 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;
}

Initial URL


Initial Description


Initial Title
C++ - Hello World

Initial Tags
window, python, unix, c, windows, linux, security

Initial Language
C++