gpt4 book ai didi

c - 在c中将整数写入文件

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

我需要将整数打印到文件中。我将在下面发布代码。此代码的输出是一个空文件,它不包含整数。

FILE *out1;
out1 = fopen(outfile, "w");
if( out1 == NULL )
{
perror("Error while opening the output file.\n");
exit(EXIT_FAILURE);
}
int paste = noptr->no;
printf("message received %d\n", paste);
fprintf(out1,"%d\n", paste);
printf("printed!\n");
fclose(out1);

最佳答案

你的代码对我来说工作得很好。也许您的 int 是 0,并且您在文本编辑器中打开文件。检查输出文件大小。

关于c - 在c中将整数写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19515945/

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