home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / qc_prog / chap03 / tiny.c < prev    next >
Encoding:
Text File  |  1988-04-06  |  180 b   |  8 lines

  1. /* tiny.c -- the smallest possible C */
  2. /*           program with comments   */
  3.  
  4. main() /* function name and argument list */
  5. {
  6.        /* function definition in braces */
  7. }
  8.