[C언어 소스] strftime 함수 사용 예제 코드, 다양한 포멧으로 현재 시간 출력 //C언어 표준 라이브러리 함수 가이드//size_t strftime(char *s, size_t maxsize, const char *format, const struct tm * timeptr); 일시로 포멧 문자열을 만드는 함수//다양한 포멧으로 현재 시간 출력 #include #include #include int main(void){ time_t now; struct tm now_tm; char buf[256]; setlocale(LC_ALL, "Korean");//지역을 한국으로 설정 time(&now); localtime_s(&now_tm, &now); strftime(buf, sizeof(buf), "%..