home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast.iso / pcmag / vol10n21.zip / IACA.ZIP / IACACHLD.C < prev    next >
Text File  |  1991-10-31  |  372b  |  22 lines

  1. IACACHLD.C
  2.  
  3. /* IACACHLD.C - IACAMAIN's child program */
  4.  
  5. #include<string.h>
  6. #include<stdio.h>
  7. #include"iaca.h"
  8.  
  9. void main(void);
  10.  
  11. void main(void)
  12.         {
  13.         char far *ptr;
  14.  
  15.         ptr = _Iaca[0];
  16.     printf("IacaChld: ptr is set to %04Fp...placing message there.\n",ptr);
  17.         _fstrcpy(ptr,"Hello from IACACHLD");
  18.         }
  19.  
  20.  
  21.  
  22. «MDUL»«MDNM»