C언어/C언어 예제

[C언어 소스] time 함수 사용 예제 코드

언제나휴일 2016. 5. 6. 08:18
반응형

[C언어 소스] time 함수 사용 예제 코드


//C언어 표준 라이브러리 함수 가이드

//time_t time(time_t *timer); 현재 초단위 시간 값을 구하는 함수

//현재 시각을 출력

#include <stdio.h>

#include <time.h>

 

int main(void)

{

    time_t now_time;

    struct tm now_date;

    char buf[100];

    time(&now_time); //현재 시각을 구한다.

 

    localtime_s(&now_date, &now_time);//초 단위 값을 지역 시각(DateTime)을 구한다.

    asctime_s(buf, sizeof(buf), &now_date);//버퍼에 현재 시각을 출력

    printf(buf);    //표준 출력 스트림에 출력

    return 0;

}

 

출력

Sat Oct 31 01:45:23 2015


프로그래밍 언어 및 기술 교육 무료 사이트는 언제나 휴일 티스토리

반응형