while(1)
{
gotoxy(20,10);
if(Time_Format=='m' || Time_Format=='M')
{
cprintf(">>> After %d Second will reset the system. <<<",j);
j--;
}
if(Time_Format=='s' || Time_Format=='S')
{
cprintf(">>> After %d Second will reset the system. <<<",i);
i--;
}
delay(900);
}
return 0;
}
20