void SlowDisplay(char *str) { char *p = str; while(!kbhit()) { if(*p!=0) printf("%c",*p++); else break; Sleep(100); } printf("%s", p); }