下边代码段是关于C语言基础:延迟执行的代码,希望能对大家也有用。

#include <stdio.h>
#include <time.h>

int main (void)
{
time_t current_time;
time_t start_time;

printf("About to delay 5 secondsn");do { time(&current_time);} while ((current_time - start_time) < 5);printf("Donen");return 1;

}