home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / gcc / cc1 / !gcc / files / c / hellow < prev   
Encoding:
Text File  |  1996-10-27  |  138 b   |  12 lines

  1. /* c.hellow.
  2.  
  3.    The simple Hello World application.  */
  4.  
  5. #include <stdio.h>
  6.  
  7. int main (void)
  8. {
  9.   printf ("Hello World\n");
  10.   return 0;
  11. }
  12.