home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / Borland / Cplus45 / BC45 / EXAMPLES.PAK / HELLO.C < prev    next >
Text File  |  1995-08-29  |  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.