User Tools

Site Tools


c:conio.h:kbhit

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

c:conio.h:kbhit [2024/02/16 01:05] (current)
Line 1: Line 1:
 +====== kbhit======
 +<code c>
 +int kbhit();
 +</code>
  
 +==== description of kbhit ====
 +used to find ou if a key has been pressed or not
 +
 +<code c>
 +#include <stdio.h>
 +#include <conio.h>
 +
 +int main( void )
 +{
 +   while (kbhit())
 +      printf("you have touched key.\n");
 +     
 +   return 0;
 +}
 +</code>
 +
 +===== output of kbhit c example =====
 +    you have touched a key

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/conio.h/kbhit.txt · Last modified: 2024/02/16 01:05 (external edit)

Impressum Datenschutz