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

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