728x90
728x90
https://www.acmicpc.net/problem/10699
별거 아니지만 알아두면 좋을 것 같아서 포스팅한다
현재 날짜를 xxxx-xx-xx 형식으로 출력하는 방법이다
#include <stdio.h>
#include <time.h>
int main() {
struct tm* t;
time_t base = time(NULL);
t = localtime(&base);
printf("%d-%02d-%02d", t->tm_year + 1900, t->tm_mon + 1, t->tm_mday);
return 0;
}
반응형