gpt4 book ai didi

c - 我会滥用 fwrite 功能吗?

转载 作者:行者123 更新时间:2023-12-01 14:46:16 24 4
gpt4 key购买 nike

我不明白为什么下面的代码可以创建aaa文件,但不能将'1'(缓冲区值)写入aaa文件。

#include <stdio.h>
#include <stdlib.h>
int main()
{
int a;
int b;
int buf;
FILE *fp;

buf = 1;
a = 5;
b = 6;
fp = fopen("c:\\aaa.txt","wb");
fwrite(&buf, sizeof(int),1,fp);

return 0;
}

最佳答案

调用 fclose(fp)fflush(fp) 以确保文件缓冲区的内容被刷新到文件中。

关于c - 我会滥用 fwrite 功能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8437015/

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