I heard kbhit is not a standard.
Where is standard function for keyboard check?
Please help me.
Thanks :)
I heard kbhit is not a standard.
Where is standard function for keyboard check?
Please help me.
Thanks :)
The keyboard does not exist in standard C11. It only knows about stdin
(and a lot of computers don't have keyboards).
Keyboard access is operating system specific. See tty demystified for an historical and Unix centered approach.