使用 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);
}