home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / pocketbk / developmen / s3c111 / HELLO.C < prev    next >
C/C++ Source or Header  |  1994-12-02  |  255b  |  18 lines

  1. /* Take a look at win.c for full details about
  2.    using #link and #run etc..
  3.  */ 
  4.  
  5. #link "-om:\img\hello.img hello.o stdio.o"
  6. #run "m:\img\hello.img"
  7.  
  8.  
  9. #include <stdio.h>
  10.  
  11. main()
  12. {
  13.     printf("Hello world\n\r");
  14.      fgetc(stdin);
  15.     exit(0);
  16. }
  17.  
  18.