home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 263_01 / hello.c < prev    next >
Text File  |  1990-02-14  |  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.