home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 August / PCWorld_2000-08_cd.bin / Software / Topware / devc / _SETUP.6 / Group22 / Hello.txt < prev    next >
Text File  |  2000-05-07  |  142b  |  10 lines

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