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

  1. main()    /* inkey.c -- illustrates use of inkey() */
  2.  
  3. {
  4.  
  5. puts("Title: The prompt of the anxious programmer.");
  6.  
  7. int c;
  8.  
  9. while((c = inkey()) == -2)
  10.     puts("No character yet, it's time to worry!");
  11.  
  12. printf("The letter hit was: %c; it's code name is %d.", c, c);
  13. }
  14.  
  15.