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.

link|improve this question

77% accept rate
You used to be able to use 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
Check out GetAsyncKeyState Function if you are using Windows. – Juho Jul 18 '11 at 10:18
kbhit() may be OS-dependent, but it is declared in conio.h, just like getch(). So if he/she uses getch(), he/she should have kbhit() too. – Rudy Velthuis Jul 18 '11 at 10:59
feedback

3 Answers

up vote 0 down vote accepted

I would suggest that you go throgh this article.

Non-blocking user input in loop without ncurses.

link|improve this answer
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.

link|improve this answer
Yes, conio.h is not standard because they are dependent on the OS that is been used. – Talha Ahmed Khan Jul 18 '11 at 10:20
1  
Not every implementation of C has a conio.h at all, although many try to provide one, these days. How or if they are implemented depends on the platform, indeed. – Rudy Velthuis Jul 18 '11 at 10:24
feedback

The function kbhit() from conio.h returns non-zero value if any key is pressed but it does not block like getch(). Now, this is obviously not standard. But as you are already using getch() from conio.h, I think your compiler has this.

if (kbhit()) {
    // keyboard pressed
}

From Wikipedia,

conio.h is a C header file used in old MS-DOS compilers to create text user interfaces. It is not described in The C Programming Language book, and it is not part of the C standard library, ISO C nor is it required by POSIX.

Most C compilers that target DOS, Windows 3.x, Phar Lap, DOSX, OS/2, or Win321 have this header and supply the associated library functions in the default C library. Most C compilers that target UNIX and Linux do not have this header and do not supply the library functions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.