Introduction
Statistics
Contact
Development
Disclaimer
Help
bitreich.org home page
main()
{
int key;
while((char)key != 27)
{
key = getch();
putch(key);
if((char)key == 13){
putch(10);
if(wherey() == 25) clreol();
}
}
}