home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / mac / Source / GPCHAP03 / PROG3_1.CPP next >
C/C++ Source or Header  |  1997-09-10  |  201b  |  9 lines

  1. // PROG3_1.CPP - whats up standard version
  2. #include <stdio.h>
  3.  
  4. // main entry point for all standard DOS/console programs
  5. void main(void)
  6. {
  7. printf("\nWhat's up world!\n");
  8. } // end main        
  9.