gpt4 book ai didi

c - 如何从标准输入读取文本并使用低级文件处理将其写入文件?

转载 作者:行者123 更新时间:2023-11-30 15:52:53 26 4
gpt4 key购买 nike

我尝试使用以下代码从键盘读取文本并将其写入文件text.dat。文件已创建,但它是空的。

#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <io.h>
#include <string.h>

int main()
{
char s[201];
int n,f = open("text.dat", O_RDWR | O_CREAT);
while (fgets(s,200,stdin) != NULL)
write(f, s,sizeof(s));
close(f);
return 0;
}

最佳答案

write(f, s, strlen(s))虽然我会使用 read() 而不是 fgets() 并使用其结果而不是 strlen()

关于c - 如何从标准输入读取文本并使用低级文件处理将其写入文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14042861/

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