home *** CD-ROM | disk | FTP | other *** search
/ Beginning C++ Through Gam…rogramming (2nd Edition) / BCGP2E.ISO / bloodshed / devcpp-4.9.9.2_setup.exe / Templates / Hello_c.txt < prev    next >
Text File  |  2003-02-12  |  206b  |  13 lines

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