what to do if i want to execute some statements in a loop till the user enters any key? i did this earlier but have forgotten the logic...
example:-
while(1)
{
printf("abc"); /*i want this code infinitely, but as the user presses any particular key it should stop the execution*/
}
can i use bioskey in this program??? how to use that???