home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 June / Chip_2002-06_cd1.bin / zkuste / cecko / install / devcpp4920.exe / Templates / Hello_cpp.txt < prev    next >
Encoding:
Text File  |  2002-04-10  |  244 b   |  15 lines

  1. #include <windows.h>
  2. #include <iostream.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5.  
  6. int
  7. main (int argc, char *argv[])
  8. {
  9.   cout << "Hello World!" << endl;
  10.  
  11.   cout << "Press ENTER to continue..." << endl;
  12.   getchar ();
  13.   return 0;
  14. }
  15.