home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / APUT.C < prev    next >
Encoding:
Text File  |  1985-02-17  |  403 b   |  18 lines

  1. main()    /* aput.c -- illustrates use of aput() */
  2.         /* make sure your equipment is hooked up and port initialized */
  3. {
  4. int ret,;
  5. char c;
  6.  
  7. c = 32;
  8.  
  9. puts("Turn on your modem then press any key to continue; Ctrl-c + <enter> to abort.");
  10. getchar();
  11.     ret = aput(c);
  12.     printf("%d", ret);
  13.     ret = aget();
  14.     printf(" %d", ret);
  15.  
  16. /* Send a space to the communication port; correct answer is 32*/
  17. }
  18.