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:
C/C++ Source or Header  |  1988-10-25  |  229 b   |  14 lines

  1. /* KBHIT.C illustrates:
  2.  *      kbhit
  3.  */
  4.  
  5. #include <conio.h>
  6.  
  7. main()
  8. {
  9.     /* Display message until key is pressed. Use getch to throw key away. */
  10.     while( !kbhit() )
  11.         cputs( "Hit me!! " );
  12.     getch();
  13. }
  14.