home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 March / PCWorld_2001-03_cd.bin / Software / TemaCD / devc / _SETUP.6 / Group21 / Hello_c.txt < prev    next >
Text File  |  2000-07-15  |  185b  |  12 lines

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