home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / cwt2.zip / HELLO.C < prev    next >
Text File  |  1989-11-25  |  311b  |  18 lines

  1. #include <stdio.h>
  2. #include <c_wndw.h>
  3. /*
  4. *    Copyright 1989, Marietta Systems, Inc.
  5. *    All rights reserved
  6. */
  7.  
  8. /*
  9. *    This program displays a window containing the message "hello world"
  10. */
  11.  
  12. void main ()
  13. {
  14.      clr_scrn ("Hello world");
  15.      err_wndw ("          hello world", 0, 0);
  16.      goodbye (0);
  17. }
  18.