home *** CD-ROM | disk | FTP | other *** search
/ H4CK3R 14 / hacker14.iso / programacao / cwin / c.exe / $INSTDIR / Templates / Hello_c.txt < prev    next >
Encoding:
Text File  |  2003-12-15  |  206 b   |  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.