[C언어 소스] time 함수 사용 예제 코드 //C언어 표준 라이브러리 함수 가이드//time_t time(time_t *timer); 현재 초단위 시간 값을 구하는 함수//현재 시각을 출력#include #include 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..