I\'m trying to write a program in C (on Linux) that loops until the user presses a key, but shouldn\'t require a keypress to continue each loop.
Is there a simple wa
The curses library can be used for this purpose. Of course, select() and signal handlers can be used too to a certain extent.
select()