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

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