home *** CD-ROM | disk | FTP | other *** search
- main() /* inkey.c -- illustrates use of inkey() */
-
- {
-
- puts("Title: The prompt of the anxious programmer.");
-
- int c;
-
- while((c = inkey()) == -2)
- puts("No character yet, it's time to worry!");
-
- printf("The letter hit was: %c; it's code name is %d.", c, c);
- }
-
-