/* ========================================================================== */ /* */ /* STDIO.c */ /* (c) 2006 ICPDAS: EVA LI */ /* */ /* Description */ /* */ /* ========================================================================== */ #include #include void main() { int quit=0,data; InitLib(); Puts("\n\rPress any key to show ASCII('Q' to quit):\n\r"); while(!quit){ if(Kbhit()){ data=Getch(); if(data=='Q') quit=1; Putch(data); Print(" ASCII is: %d\n\r", data); Puts("\n\rPress any key to show ASCII('Q' to quit):\n\r"); } } }