[C/C++] 시간표시

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <time.h>

int main()
{
    time_t timer;
    struct tm* t;

    timer = time(NULL); // 현재 시각을 초 단위로 얻기

    t = localtime(&timer); // 초 단위의 시간을 분리하여 구조체에 넣기

    printf("%d", t->tm_year + 1900);    //현재 년
    printf("%d", t->tm_mon + 1);    //현재 월
    printf("%d", t->tm_mday);    //현재 일
    printf("%d:", t->tm_hour);    //현재 시
    printf("%d:", t->tm_min);    //현재 분
    printf("%d", t->tm_sec);    //현재 초
}
이전글
다음글

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다