当前位置:编程学习 > 网站相关 >>

测量某断代码执行时间-代码

print?#include <time.h> 
 
void main(void) 

    int time_counter = 600; 
    time_t start,end; 
 
    time(&start); 
     
    while(time_counter--) 
        //added your test code 
 
    time(&end) 
     
    printf("start = %d, end = %d", start, end); 
 
    exit(0); 

#include <time.h>

void main(void)
{
 int time_counter = 600;
 time_t start,end;

 time(&start);
 
 while(time_counter--)
  //added your test code

 time(&end)
 
 printf("start = %d, end = %d", start, end);

 exit(0);
}

mail:bookworepeng@Hotmail.com

qq:196568501

author:DriveMonkey

phone:13410905075

 

 

补充:综合编程 , 其他综合 ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,