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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1993-09-16
|
198 b
|
7 lines
// KeyCode - Print values of characters pressed
printf("Press Key to see keyboard value; Press ESCAPE to exit\n");
do {
key = getch();
printf("key=%04X\n",key)
} while( key != '\033' );