windows has Sleep which is in millliseconds time.h iirc
also if you can't find a sleep you can nearly always find a clock
so all youd have to do is
start = clock();
{
diff = clock()-start;
}while(diff<1000);
while its pretty horrible in a multitasking os , if its all you have it'll work fine
clrscr and conio.h sounds like dos maybe ?
|