调用time.h就可以很容易实现了的,以下程序在Dev-Cpp(gcc)环境下编译通过程序执行8000ms退出#include "stdio.h"#include "windows.h"#include "time.h"
#define SLEEPDELAY 8000
int main(/*int argc,char *argv[]*/){ while(clock()<SLEEPDELAY); /*当clock()函数(即取程序运行时间函数)返回小于8000(ms)时进行空循环*/ /*system("PAUSE");*/ return 0;}