Saturday, 24 December 2011

kbhit

#include<stdio.h>
#include<conio.h>
 
main()
{
while(!kbhit())
printf("You haven't pressed a key.\n");
 
return 0;
}

No comments:

Post a Comment