home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / WKFRAME / HELLO2 / HELLO2.C next >
Text File  |  1992-04-01  |  2KB  |  32 lines

  1. /******************************************************************************/
  2. /* SAMPLE PROJECT: HELLO2.C                                                   */
  3. /*                                                                            */
  4. /* COPYRIGHT:                                                                 */
  5. /* ----------                                                                 */
  6. /* Copyright (C) International Business Machines Corp., 1991,1992.            */
  7. /*                                                                            */
  8. /* DISCLAIMER OF WARRANTIES:                                                  */
  9. /* -------------------------                                                  */
  10. /* The following [enclosed] code is sample code created by IBM                */
  11. /* Corporation.  This sample code is not part of any standard IBM product     */
  12. /* and is provided to you solely for the purpose of assisting you in the      */
  13. /* development of your applications.  The code is provided "AS IS",           */
  14. /* without warranty of any kind.  IBM shall not be liable for any damages     */
  15. /* arising out of your use of the sample code, even if they have been         */
  16. /* advised of the possibility of such damages.                                */
  17. /*                                                                            */
  18. /*                                                                            */
  19. /* STATUS: VERSION 1, RELEASE 0, MODIFICATION 0                               */
  20. /*                                                                            */
  21. /******************************************************************************/
  22.  
  23. #include <stdio.h>
  24.  
  25. int main( void )
  26. {
  27.    printf("Hello world 2!\n");
  28.    printf("Press Enter key and continue...\n");
  29.    getchar();
  30.    return 0;
  31. }
  32.