home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource1
/
cenvid
/
keycode.bat
< prev
next >
Wrap
DOS Batch File
|
1993-05-06
|
197b
|
5 lines
@echo off
REM KeyCode - Print values of characters pressed
ECHO Press Key to see keyboard value; Press ESCAPE to exit
cenvi do { key = getch(); printf("key=%%04X\n",key) } while(key != '\033')