gpt4 book ai didi

c - 文件写入时出现段错误

转载 作者:行者123 更新时间:2023-11-30 21:11:42 25 4
gpt4 key购买 nike

当我尝试打印到文件时,出现段错误。如何打印归档日期和时间?

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

main()
{
FILE *fp;
time_t mytime;

mytime=time(NULL);
fp=("sys.txt","w+");

fprintf(fp,"%s",ctime(&mytime));
fclose(fp);
return 0;
}

最佳答案

您忘记了 (a) 调用 fopen() 和 (b) 注意编译器的警告。如果您没有收到编译器警告,请打开它们或获取更好的编译器。

关于c - 文件写入时出现段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19826196/

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