home *** CD-ROM | disk | FTP | other *** search
- #define MAXLEN 50
-
- main() /* ungetch.c -- illustrates un-get console function ungetch() */
- {
- char c, a[MAXLEN];
- int i;
-
- puts("Type something, please:");
- i = 0;
- while ((c = getch()) != '\n' && i < (MAXLEN - 1)) {
- a[i++] = c;
- if (c == 'e')
- ungetch(c);
- }
- a[i] = '\0';
- puts("");
- puts(a);
- puts("Correct output: Your input up to the first e, then all e's");
- }