gpt4 book ai didi

c - 使用 fputc 通过管道写入

转载 作者:行者123 更新时间:2023-11-30 17:44:40 25 4
gpt4 key购买 nike

由于某种原因,当我尝试使用 fputc 通过管道写入时,我的程序无法工作;但是,当我使用 write 系统调用时它工作正常。这是我使用 fputc 的代码部分:

    FILE *input = fopen(argv[1], "rb");
FILE *toSort = fdopen(ps_fd[1], "wb");
/* close the side of pipe I am not going to use */
close (ps_fd[0]);
char temp;
char buf[1];
while ((temp=fgetc(input)) != EOF)
{
buf[0] = (char)temp;
fputs(buf, toSort);
buf[0] = '\0';
}
fputs(buf, toSort);
close(ps_fd[1]);

最佳答案

fputs()之后使用fflush(toSort)

关于c - 使用 fputc 通过管道写入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19896522/

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