#include #include void main() { for(;;) { printf("Hello World!%c",'\x20'); if(kbhit()) { break; } } getch(); }