谁能帮我解释一下,,下面的程序:
#include "stdio.h"
#include "stdlib.h"
#include "time.h"
void sleep(int nbr_seconds);
int main(void)
{
int ctr;
int wait=13;
printf("delay for %d seconds \n",wait);
printf(">");
for(ctr=1;ctr<=wait;ctr++)
{
printf(".");
fflush(stdout);//解释一下:
sleep((int)1);
}
printf("done\n");
return 0;
}
void sleep(int nbr_seconds)
{
clock_t goal;
goal=(nbr_seconds * CLOCKS_PER_SEC)+clock();//解释一下,,
while(goal>clock())
{
;
}
}
我尤其不明白 CLOCKS_PER_SEC 是什么东西,,还有为什么要+clock()....clock()的函数是怎么写的?具体完成什么功能
谢谢各位,,我是新手,,照顾一下啊;