asctime헤더 파일 [언어 자료구조 알고리즘/C11 표준 라이브러리 함수] - time.h char *asctime(const struct tm *timeptr); 일시로 문자열로 변환하는 함수 입력 매개 변수 리스트 timeptr 일시(Date Time) 반환 값 시각을 표현한 문자열 사용 예 //C언어 표준 라이브러리 함수 사용법 가이드 //char *asctime(const struct tm *timeptr); 일시로 문자열로 변환하는 함수 //현재 지역 시각과 GMT 시각 출력 #pragma warning(disable:4996) #include #include int main(void) { struct tm *gmt, localt; time_t now_time; char buf[256]; c..