gpt4 book ai didi

c - 使用 struct 解析时间给我一个 .exe has stopped working 错误

转载 作者:太空宇宙 更新时间:2023-11-04 01:27:48 24 4
gpt4 key购买 nike

这是代码。在这种情况下,我试图打印小时。提前致谢。

    #include <time.h>
#include <stdio.h>

int main(void)
{
time_t stringTime;
struct tm *t0;
stringTime = time(NULL);
t0 = localtime(&stringTime);
printf("%s\n", t0->tm_hour);

return 0;
}

最佳答案

t0->tm_hour 是整数,因此 %s 不是它的正确格式说明符。请改用 %d

关于c - 使用 struct 解析时间给我一个 .exe has stopped working 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28135100/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com