gpt4 book ai didi

c - 如何从文件中读取输入并将输出写入另一个 C 文件

转载 作者:太空狗 更新时间:2023-10-29 15:25:05 26 4
gpt4 key购买 nike

我不太擅长 C。如何让我的程序从文件读取输入并将输出写入另一个文件在 C 中?

最佳答案

使用 karlphillip 的链接我得到了这个代码:)

编辑:代码的改进版本。

#include <stdio.h>
#include <stdlib.h>
int main(void)
{
FILE *fs, *ft;
int ch;
fs = fopen("pr1.txt", "r");
if ( fs == NULL )
{
fputs("Cannot open source file\n", stderr);
exit(EXIT_FAILURE);
}
ft = fopen("pr2.txt", "w");
if ( ft == NULL )
{
fputs("Cannot open target file\n", stderr);
fclose(fs);
exit(EXIT_FAILURE);
}
while ((ch = fgetc(fs)) != EOF)
{
fputc(ch, ft);
}
fclose(fs);
fclose(ft);
exit(EXIT_SUCCESS);
}

关于c - 如何从文件中读取输入并将输出写入另一个 C 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5277748/

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