home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / PP911.ZIP / HELLO.C next >
Text File  |  1990-05-07  |  325b  |  26 lines

  1. POWER PROGRAMMING 
  2. RAY DUNCAN  
  3. Vol. 9, No. 11
  4.  
  5. HELLO.C
  6.  
  7.  
  8.  
  9.  
  10. /*
  11.      hello.c, using direct call to DosWrite
  12. */
  13. #include <stdio.h>
  14. #define INCL_DOS
  15. #include <os2.h>
  16.  
  17. main(int argc, char *argv[])
  18. {
  19.      int wlen, rc;
  20.      char *p = "\nHello World!";
  21.      rc = DosWrite(1, p, strlen(p), &wlen);
  22. }
  23.  
  24.  
  25.  
  26.