#include <sys/time.h>
#include <ctime>
#include <stdio.h>
#include <unistd.h>
int main()
{
struct timeval start, end;
long mtime, seconds, useconds;
gettimeofday(&start, NULL);
usleep(2000);
gettimeofday(&end, NULL);
seconds = end.tv_sec - start.tv_sec;
useconds = end.tv_usec - start.tv_usec;
mtime = ((seconds) * 1000 + useconds/1000.0) + 0.5;
printf("Elapsed time: %ld milliseconds\n", mtime);
return 0;
}
'프로그래밍 > C/C++' 카테고리의 다른 글
문자열 내에 숫자문자가 혼열된 경우, 문자와 숫자 구별 (0) | 2013.12.02 |
---|---|
boost] filtering_streambuf<input> 데이터를 string에 저장하기 (0) | 2013.06.24 |
stringstream clear (0) | 2012.07.30 |
다중벡터 초기화 (0) | 2012.07.11 |
Group Sorting (0) | 2012.07.09 |