home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
c
/
other
/
learn
/
kbhit.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1988-10-25
|
229 b
|
14 lines
/* KBHIT.C illustrates:
* kbhit
*/
#include <conio.h>
main()
{
/* Display message until key is pressed. Use getch to throw key away. */
while( !kbhit() )
cputs( "Hit me!! " );
getch();
}