This program creates a time delay of 5 seconds.It is useful for games and online test.
#include <stdio.h> #include <time.h>
int main() { time_t start; time_t current; time(&start);
printf("delay for 5 seconds.\n"); do{ time(¤t); }while(difftime(current,start) < 5.0); printf("Finished delay.\n"); return 0; }
|