/ Published in: C++
Expand |
Embed | Plain Text
/* * * 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; }
You need to login to post a comment.
