home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 May / PCWorld_2001-05_cd.bin / Software / Vyzkuste / devc / _SETUP.6 / Group21 / Hello_cpp.txt < prev    next >
Text File  |  2000-07-15  |  217b  |  13 lines

  1. #include <windows.h>
  2. #include <iosteam.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5.  
  6. int main()
  7. {
  8.   cout << "Hello World!" << endl;
  9.  
  10.   cout << "Press ENTER to continue..." << endl;
  11.   getchar ();
  12.   return 0;
  13. }