home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c021 / 7.img / EXAMPLES.ZIP / HELLO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-04  |  123 b   |  14 lines

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