C语言中time.h头文件中对时间的操作具体是怎样的?
2022-12-11 · 百度认证:北京惠企网络技术有限公司官方账号
time.h头文件提供对时间操作的一些函数,clock()是程序开始陆隐到调用的毫秒数。
time_tt_begin,t_end;
t_begin=clock();//记录开始时间
dosomething();//调用函数
t_end=clock();//记录结束时间
printf("Timeused=%.21f\n",(double)(t_end-t_begin)/CLOCKS_PER_SEC);//显示函数调用时间
扩展资料早敏厅
c语言中time.h头文件的使用
#include<stdio.h>拿弊
#include<stdlib.h>
#include<time.h>
intmain(void)
{
longi=10000000L;
clock_tstart,finish;
doubleduration;//测量一个事件持续的时间
printf("Timetodo%ldemptyloopsis",i);
start=clock();
while(i--)
finish=clock();
duration=(double)(finish-start)/CLOCKS_PER_SEC;//clock()是以毫秒为单位计算时间的所以除以CLOCKS_PER_SEC这是time.h里面定义的一个常量
printf("%fseconds\n",duration);
system("pause");
}