home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bc45 / examples.pak / HELLO.C < prev    next >
Text File  |  1997-07-23  |  196b  |  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.