编写一程序,要求记录并输出该段程序执行的时间。
使用clock函数对程序的开始,结束时间进行记录。代码如下:
- #include <time.h>
-
#include <stdio.h>
-
-
#ifndef CLK_TCK
-
#define CLK_TCK CLOCKS_PER_SEC
-
-
int main(int argc, char * argv[])
-
{
-
clock_t start, end;
-
start = clock();
-
sleep(1);
-
end = clock();
-
printf("the time was: %f\n",(float)(end - start) / CLK_TCK);
-
return 0;
-
}
-
-
#endif
阅读(226) | 评论(0) | 转发(0) |