I want to make a program that will execute a function after 10 minutes. I mean along the process it will pause after ten minutes then execute a certain function. After execution it will resume the other process then count another 10 min. I tried using the delay(); and sleep(); function but it didnt worked. Is there any function that would be this possible?


ex

#include <stdio.h>
main()
{
clrscr();
/ * start counting for 10 minutes then execute a certain fxn*/
/* resume where it stopped */


}