home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / finger4.zip / hello.c < prev    next >
C/C++ Source or Header  |  1994-05-29  |  110b  |  9 lines

  1. /* Hello World program */
  2. #include <stdio.h>
  3.  
  4. int main()
  5. {
  6.     printf("Hello, world!\n");
  7.     return (0);
  8. }
  9.