home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource1 / cenvew / keycode.cmm < prev    next >
Encoding:
Text File  |  1993-09-16  |  198 b   |  7 lines

  1. // KeyCode - Print values of characters pressed
  2. printf("Press Key to see keyboard value; Press ESCAPE to exit\n");
  3. do {
  4.    key = getch();
  5.    printf("key=%04X\n",key)
  6. } while( key != '\033' );
  7.