home *** CD-ROM | disk | FTP | other *** search
/ RISCWORLD 7 / RISCWORLD_VOL7.iso / Software / Issue2 / SDL.ARC / !gcc / examples / c / hellow < prev   
Encoding:
Text File  |  2001-01-02  |  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.