How can I exit from an infinite loop, when a key is pressed? Currently I'm using getch, but it will start blocking my loop as soon, as there is no more input to read.
|
feedback
|
|
I would suggest that you go throgh this article. | |||
|
feedback
|
|
If you are using getch() from conio.h anyway, try to use kbhit() instead. Note that both getch() and kbhit() - conio.h, in fact - are not standard C. | |||||||
feedback
|
|
The function
From Wikipedia,
| ||||
|
feedback
|
while(!kbhit()), but this is prolly OS dependent. You might want to have a look at cboard.cprogramming.com/c-programming/63166-kbhit-linux.html, depending on your os – forsvarir Jul 18 '11 at 10:12