#include #include int main() { int quit=0; int chr; InitLib(); InitLCD(); while(!quit) { chr=Getch(); if(chr=='q') quit=1; else if(chr<0x80)Print("%c",chr); else Print("[%d]",chr); }//while loop CloseLCD(); return 0; }