码迷,mamicode.com
首页 > 其他好文 > 详细

用C写的计算运行时间

时间:2016-04-21 18:03:43      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:

#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main( void ) 
{ 
   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", duration ); 
   system("pause"); 
} 

  

用C写的计算运行时间

标签:

原文地址:http://www.cnblogs.com/chensheng-zhou/p/5418032.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!