home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day01 / hello.c < prev    next >
C/C++ Source or Header  |  2002-04-07  |  92b  |  8 lines

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