home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / languages / progs / gcc / Examples / c / HelloW < prev   
Encoding:
Text File  |  1994-10-02  |  75 b   |  10 lines

  1. #include <stdio.h>
  2.  
  3. int
  4. main(void)
  5.  
  6. {
  7.   puts("Hello world");
  8.   return 0;
  9. }
  10.