home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / EN0719.ZIP / HELLO.C < prev    next >
C/C++ Source or Header  |  1988-07-18  |  255b  |  13 lines

  1. /*--------------------------------------------
  2.    HELLO.C -- Standard "Hello, world" Program
  3.   --------------------------------------------*/
  4.  
  5. #include <stdio.h>
  6.  
  7. int main (void)
  8.      {
  9.      printf ("Hello, world\n") ;
  10.  
  11.      return 0 ;
  12.      }
  13.