home *** CD-ROM | disk | FTP | other *** search
- main() /* getchar.c -- demonstrates getchar() */
-
- {
-
- char c;
- puts("Type any character\n");
- c = getchar();
- if (c == 1)
- puts("\nSmile, you're on candid computer, you typed a control-A !\n");
- else
- puts("\nYou type something other than a control-A");
- }