2
私は2つのCプログラムを持っていて、親プログラム "parent.c"の中にいくつかの子プログラム "child.c"を呼び出そうとしています。 child.cからのstdout。これをどうやってやりますか?別のCプログラムを呼び出してmacOSで子供の出力を取得
私はmacOSを使用しています。
ここのため
parent.c
while (1)
{
// call the child program
// capture the output from the child
if (child_output == some_condition)
{
break;
}
}
child.c
printf("Hello world!")
おかげでどのように見えるかparent.cとchild.cの例です助けて。