home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff314.lha / zc / zc.lzh / Examples / Stdio / Hello / hello.c < prev   
C/C++ Source or Header  |  1988-07-17  |  63b  |  7 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4.     puts("Hello World!");
  5.     exit(0);
  6. }
  7.