home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c063 / 1.ddi / EXAMPLES.ZIP / HELLO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-18  |  177 b   |  12 lines

  1. // Borland C++ - (C) Copyright 1991 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.