C

소요 시간 구하기

1. 내용

프로그램 실행 시간(소요 시간) 구하기

 

2. header file

time.h
stdio.h

 

3. source code

#include <stdio.h>
#include <time.h>
 
int main(){
    time_t start_t, end_t;
 
    start_t = clock();
 
    ...
 
    end_t = clock();
 
    printf("TIME : %f\n",(float)(end_t-start_t)/CLOCKS_PER_SEC);
 
    return 0;
}

 

Back To Top