Posted By


whitetiger on 11/09/06

Statistics


Viewed 721 times
Favorited by 1 user(s)

C++ - Hello World


/ Published in: C++
Save to your folder(s)



Copy this code and paste it in your HTML
  1. /*
  2.  *
  3.  * Semplice esempio di Hello World !!!
  4.  */
  5.  
  6. #include <iostream>
  7.  
  8. using namespace std;
  9.  
  10. int main(int argc, char *argv[])
  11. {
  12. cout << "Hello World !!!" << endl; // endl equivale ad un \n
  13.  
  14. return 0;
  15. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.