home *** CD-ROM | disk | FTP | other *** search
- main() /* getch.c -- demos getch() and putch() */
- {
- char c;
- int i;
-
- printf("Type a character and I'll print it back after a delay: ");
- c = getch();
- puts("");
- for (i = 0; i < 100; i++) ;
- putch(c);
- puts("\nCorrect output is your character ... after a brief delay.");
- }