helloworld.txt 在我的程序的主函数中,-6ren">
gpt4 book ai didi

C - 使用文件从标准输入读取?

转载 作者:行者123 更新时间:2023-11-30 18:38:47 26 4
gpt4 key购买 nike

所以我有一个文本文件,它与我的 C 程序位于同一目录中,并且我使用 MinGW 作为编译器。这是我的输入:

./program "hello" > helloworld.txt

在我的程序的主函数中,我有:

#include <stdio.h>
int main(int argc, char *argv[]) {
char c;
while ((c=getchar()) != EOF) {
printf("test\n");
}
return 0;
}

没有打印任何内容。文本文件中肯定有行。我不知道发生了什么事。此赋值使 fopen() 等的使用无效。它只是 getchar() 和 stdin。

最佳答案

您的命令不是从文本文件中读取,而是向其中写入。如果您想从中读取内容,您需要执行以下操作:

./program < helloworld.txt

helloworld.txt:

this
is a
test

输出:

test
test
test
test
test
test
test
test
test
test
test
test
test
test
test

关于C - 使用文件从标准输入读取?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32620783/

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