본문 바로가기

공부/컴퓨터

시간 관련 함수.

반응형

#1. 1초 이하의 시간 단위까지 구하기
<sys/time.h>

void ftime(struct timeb *buf);

struct timeb {
    long time; // 1970년 이후 초로 계산 ( 유닉스 타임 )
    short millitm; // 100 분의 1초
    short timezone; // GMT 시간과 지역 시간의 시차를 분단위로 표현.
    short dstflag; // 일광절약시간이 적용되는지 여부
}

사용법)
struct timeb start;
ftime(&start);
printf("%ld,%d",start.time,start.millitm);
반응형