반응형
#include <time.h> char *_strdate(char *buffer); char *_strtime(char *buffer); |
_strdate 함수는 현재의 날짜를 문자열로 변환합니다.
_strtime 함수는 현재 시간을 문자열로 변환합니다.
변환된 문자열의 형식을 다음과 같습니다.
MM/DD/YY
HH:MM:SS
#define _CRT_SECURE_NO_WARNINGS // Visual Studio
#include <stdio.h>
#include <time.h>
int main()
{
char sdate [9];
char stime[9];
_strdate(sdate);
_strtime(stime);
printf("현재 날짜: %s\n", sdate);
printf("현재 시간: %s\n", stime);
return 0;
}
반응형
'C_C++ > C_라이브러리_함수' 카테고리의 다른 글
(C언어) strlen: 문자열 길이를 구한다 (0) | 2023.03.02 |
---|---|
(C언어) strdup, _strdup: 문자열을 복제한다 (0) | 2023.03.01 |
(C언어) strcpy, strcpy_s: 문자열을 복사한다 (0) | 2023.03.01 |
(C언어) strcmp, strcmpi: 두 문자열 (대소문자 구별 없이) 비교하기 (0) | 2023.02.28 |
(C언어) strchr: 문자열에서 지정된 문자를 찾는다 (0) | 2023.02.28 |