home *** CD-ROM | disk | FTP | other *** search
/ Game Fest 1993 / gamefest1993stgcomputerslimited1993.iso / soft / ed / pro2 / ch09_1.c < prev    next >
Text File  |  1989-11-10  |  496b  |  27 lines

  1. #include "stdio.h"
  2.  
  3. main()
  4. {
  5. char input_char;
  6.  
  7.    printf("Hit any key - to stop hit a $\n");
  8.    do {
  9.       input_char = getch();
  10.       printf("Input character is %c, numerical value is %3d\n",
  11.                  input_char,input_char);
  12.    } while (input_char != '$');
  13. }
  14.  
  15.  
  16.  
  17. /*  Result of execution
  18.  
  19. Hit any key - to stop hit a $
  20. Input character is A, numerical value is  65
  21. Input character is B, numerical value is  66
  22. ...
  23. (The display depends on the input keys hit)
  24.  
  25. */
  26.  
  27.