1、time()函数
计时精确到s级。
2、clock()函数
计时精确到ns级。
两个函数都应包含头文件:time.h。
示例代码
#include “time.h”
#include “stdio.h”
#include “stdlib.h”
int main(void)
{
time_t c_start,t_start, c_end,t_end;
c_start = clock();
time(&t_start) ;
int ll = 0.0;
for(int i=0;i<10000;i++)
for(int j=0;j<10000;j++)
{
ll=ll++;
}
c_end = clock();
t_end = time(NULL) ;
printf(“The test used %f s by time().\n”,difftime(c_end,c_start)) ;
printf(“The test used %f ms by clock().\n”,(difftime(t_end,t_start))/1000) ;
return 0;
}