本文主要是介绍C程序计算耗费的时间,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用 clock()函数读取CPU的开始,结束时针, 计算时针差。
然后除以CLOCKS_PER_SEC常量,折算成秒。
#include <stdio.h>
#include <time.h>
main()
{
clock_t start, end;
// waiting time
double tt = 4.7;
start = clock();
// waiting
while((start + 4.7*CLOCKS_PER_SEC) > clock());
end = clock();
printf("/n Resutlt: %.2f seconds. ", (double)(end-start)/CLOCKS_PER_SEC);
}
这篇关于C程序计算耗费的时间的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!