마이크로 초 단위로 측정하기
struct timeval start, end;
long elapsed;
gettimeofday(&start, NULL);
// 알고리즘
gettimeofday(&end, NULL);
elapsed = end.tv_usec - start.tv_usec;
printf("%ld\n", elapsed);
마이크로 초 단위로 측정하기
struct timeval start, end;
long elapsed;
gettimeofday(&start, NULL);
// 알고리즘
gettimeofday(&end, NULL);
elapsed = end.tv_usec - start.tv_usec;
printf("%ld\n", elapsed);