C语言计算机器运行时间

Posted ocean2015

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言计算机器运行时间相关的知识,希望对你有一定的参考价值。

//计算机器运行时间

 

 

 

long i = 10000000L;
clock_t start, finish;
double duration;
//测量一个事件持续的时间
printf( "Time to do %ld empty loops is ", i) ;
start = clock();
while( i-- );
finish = clock();
duration = (double)(finish - start) / CLOCKS_PER_SEC;
printf( "%f seconds\n", duration );
system("pause");

以上是关于C语言计算机器运行时间的主要内容,如果未能解决你的问题,请参考以下文章

C语言计算时间

c语言/c++计算程序运行时间

谈谈Java运行机制

计算机程序有几种语言

总结1

C 语言 clock() 函数,例:计算多项式值