home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compiler / small_c / byte_sc / hello.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-06-23  |  79 b   |  8 lines

  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5.     printf("Hello, world.\n");
  6.     return(0);
  7. }
  8.