home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / con_32 / test05.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-30  |  312 b   |  10 lines

  1. #include <stdio.h>        // for prototypes ( printf... )
  2.  
  3. int    main( int argc, char *argv[], char *env[] )
  4. {
  5.     printf( "test05.cpp:\n" );
  6.     printf("This program is compiled as a GUI program (see Target Expert).\n" );
  7.     printf("It will emulate the console on Win32s and Windows NT as well !\n" );
  8.     return( 0 );
  9. }
  10.