반응형
time_t lTime;
struct tm *today;
time(&lTime); // 현재시간 구하기
today = localtime(&lTime);
printf("%04d-%02d-%02d %02d:%02d:%02d\n",
today->tm_year + 1900, // tm_year는 1900을 더해야 한다.
today->tm_mon + 1, // tm_mon은 1월이 0, 2월이 1... 식으로 되어 있기 때문에 +1을 해야 한다.
today->tm_mday,
today->tm_hour,
today->tm_min,
today->tm_sec
);
728x90
반응형
'기타 언어(C, PHP 등)' 카테고리의 다른 글
[php] extension build 및 사용법 (0) | 2019.07.24 |
---|---|
[c] linux에서 c/c++ 함수(function) info (return, param) 확인방법 (0) | 2019.07.18 |
[c] ** glibc detected *** ( ... ) double free or corruption : 0x..... (0) | 2019.07.18 |
linux에서 c 컴파일 유의사항 (0) | 2019.07.18 |
c언어 core dump (0) | 2019.07.18 |