시간 관련 함수는 'ctime' 라이브러리 안에 존재한다.
#include <ctime>
time_t timer;
timer = time(NULL); //time_t 변수에 시간 정보 저장
struct tm* t = localtime(&timer); //localtime 함수로 포맷 변환
std::cout << "year : " << t->tm_year + 1900 << std::endl;
std::cout << "month : " << t->tm_mon + 1 << std::endl;
std::cout << "day : " << t->tm_mday << std::endl;
std::cout << "hour : " << t->tm_hour << std::endl;
std::cout << "min : " << t->tm_min << std::endl;
std::cout << "sec : " << t->tm_sec << std::endl;