home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / alde_c / misc / util / super_c / exc.c < prev    next >
Encoding:
Text File  |  1980-01-01  |  151 b   |  12 lines

  1. /*              Example C Program
  2.  
  3.         This program simply prints "Hello, world!"
  4.  */
  5.  
  6. main()
  7.  
  8. {
  9.         printf("Hello, world!\n");
  10. }
  11.  
  12.