C 언어 코드 조각 - 03.날짜및시간(_ftime).c
C 언어 코드 조각 - 03.날짜및시간(_ftime).c
#include <stdio.h>
#include <time.h>
#include <sys/timeb.h> //_ftime()
void main(void)
{
//확장 시간구조체
struct _timeb tb;
//기본 시간구조체
struct tm t;
//1000분의 1초 단위 계산
_ftime(&tb);
//확장구조체의 time필드를 사용한 시간 계산
t = *localtime(&tb.time);
//시간 출력
printf("현재 날짜 및 시간 : %4d.%d.%d %d:%d:%d.%d \n"
, t.tm_year + 1900
, t.tm_mon + 1, t.tm_mday
, t.tm_hour
, t.tm_min
, t.tm_sec
, tb.millitm //1000분의 1초
);
}
Comments
Comments are closed