home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / GETCH.C < prev    next >
Encoding:
Text File  |  1985-01-24  |  288 b   |  13 lines

  1. main()    /* getch.c -- demos getch() and putch() */
  2. {
  3.     char c;
  4.     int i;
  5.  
  6.     printf("Type a character and I'll print it back after a delay: ");
  7.     c = getch();
  8.     puts("");
  9.     for (i = 0; i < 100; i++) ;
  10.     putch(c);
  11.     puts("\nCorrect output is your character ... after a brief delay.");
  12. }
  13.