/ Published in: C++
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* * * 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; }