Programming Reference/Librarys
Question & Answer
Q&A is closed
used to find ou if a key has been pressed or not
#include <stdio.h> #include <conio.h> int main( void ) { while (kbhit()) printf("you have touched key.\n"); return 0; }
you have touched a key