2016/08/27

C 에서의 time 측정


#include

clock_t begin, end;
double time_spent;

begin = clock();
/* here, do your time-consuming job */
end = clock();
time_spent = (double)(end - begin) / CLOCKS_PER_SEC;

댓글 없음:

댓글 쓰기