ctime_s 함수

errno_t ctime_s(char *buffer, size_t size, const time_t *timer); 초단위 시간을 문자열로 변환하는 함수

입력 매개 변수 리스트

buffer 시간을 표현한 문자열을 설정할 버퍼

size 버퍼 크기

timer 초단위 시간

반환 값

에러 번호

사용 예

//C언어 표준 라이브러리 함수 가이드
//errno_t ctime_s(char *buffer, size_t size, const time_t *timer); 초단위 시간을 문자열로 변환하는 함수
//현재 지역 시각과 GMT 시각 출력

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

int main(void)
{
    time_t now_time;
    char buf[256];

    time(&now_time); //현재 초 단위 시간을 측정
    ctime_s(buf,sizeof(buf),&now_time);//현재시간을 문자열로 변환
    printf("현재 시각: %s", buf);
    return 0;
}

출력

현재 시각: Sat Oct 31 08:42:59 2015