home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c083 / 18.ddi / EXAMPLES.PAK / HELLO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-02  |  196 b   |  17 lines

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