gpt4 book ai didi

c - 使用popen在C中使用两个可执行文件进行读写

转载 作者:行者123 更新时间:2023-12-03 09:55:18 24 4
gpt4 key购买 nike

我了解 popen不允许同时读写。
为了解决这个问题,我创建了两个文件 1.c写作,和2.c阅读。这些文件包括在下面。
当我运行 1.out ,我在 stdout 上得到了预期的输出:

bodhi@bodhipc:~/Downloads$ ./1.out
Stockfish 11 64 BMI2 by T. Romstad, M. Costalba, J. Kiiski, G. Linscott
bodhi@bodhipc:~/Downloads$
但是, 2.outstdout 上没有给出任何输出:
bodhi@bodhipc:~/Downloads$ ./2.out
bodhi@bodhipc:~/Downloads$
我哪里错了?
1.c:
#include <stdio.h>
#include <stdlib.h>

int main( int argc, char *argv[] )
{
FILE *fp;
char path[1035];

/* Open the command for writing. */
fp = popen("./stockfish", "w");
if (fp == NULL) {
printf("Failed to run command\n" );
exit(1);
}

fprintf(fp,"uci\n");

/* close */
pclose(fp);

return 0;
}
2.c:
#include <stdio.h>
#include <stdlib.h>

int main( int argc, char *argv[] )
{
FILE *fp;
char path[1035];

/* Open the command for reading. */
fp = popen("./1.out", "r");
if (fp == NULL) {
printf("Failed to run command\n" );
exit(1);
}

/* Read the output a line at a time - output it.*/
while (fgets(path, sizeof(path), stdout) != NULL) {
printf("%s", path);
printf("Done!\n");
}

/* close */
pclose(fp);

return 0;
}

最佳答案

  while (fgets(path, sizeof(path), stdout) != NULL) {
您不想阅读 stdout , 反而:
  while (fgets(path, sizeof(path), fp) != NULL) {

关于c - 使用popen在C中使用两个可执行文件进行读写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62615429/

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