我正在尝试使用strptime()
将日期/时间字符串解析为其组件值。作为测试,我尝试使用以下代码解析固定的日期时间字符串并打印结果值:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
int main(void)
{
struct tm tm;
memset(&tm, 0, sizeof(struct tm));
strptime("2001/11/12 18:31:01", "%Y/%m/%d %H:%M:%S", &tm);
printf("year: %d; month: %d; day: %d;\n",
tm.tm_year, tm.tm_mon, tm.tm_mday);
printf("hour: %d; minute: %d; second: %d\n",
tm.tm_hour, tm.tm_min, tm.tm_sec);
exit(EXIT_SUCCESS);
}
我得到的输出是:
year: 101; month: 10; day: 12;
hour: 18; minute: 31; second: 1
其他值看起来不错,但年份和月份与输入 ( ) 不匹配2001/11/12 18:31:01
。这是为什么?