home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c060 / 6.ddi / HELLO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-29  |  104 b   |  12 lines

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