#include <stdio.h>

#include <stdlib.h>

#include <time.h>

 

void main(void)

{

   clock_t start, finish;

   double duration;

   start = clock();

   // 수행 시간 측정 시작..

  

   …

   // 알고리즘

 

   finish = clock();

   duration = (double)(finish - start) / CLOCKS_PER_SEC;

   printf("%f 초 걸렸습니다. \n", duration);

   // 수행 시간 측정 종료

}


+ Recent posts