hi guys...when we have used Sleep() function, then how can we get out of this Sleep() function....Lets suppose we have used Sleep() for 10 minutes and I want to terminate the prog after 2 mins, here is the situation im using
someFunc();
printf("\nProg will not terminate for next 5 secs");
Sleep(5000);
printf("\n\nPress any key to EXIT....");
getche();