我正在做一个项目,我必须使用 fork 创建一个子进程,然后父进程告诉子进程执行另一个 C 程序“read.c”(它从 .txt 文件中读取所有整数并计算平均值)使用 execve 然后我必须通过管道将该平均值发送到父进程。我不知道如何在“process.c”程序的子进程中获得“read.c”程序的结果“平均值”。有些朋友说我必须将对管道(pfd [2])有用的文件描述符传递给execve,而从其他程序(read.c)我必须使用管道将数据写入process.c程序。但我不知道该怎么做,所以它不能正常工作。我正在发布我的 process.c 和 read.c 代码,请告诉我应该进行哪些更改以使其运行良好。
进程.c
#include<stdio.h>
#include<unistd.h>
#include<stdlib.h>
main()
{
int pid;
int pfd[2];
int i;
char string1[12];
snprintf(string1,12,"%i",pfd[1]);
char *args[] = {"read",&string1[0],NULL};
pipe(pfd);
pid = fork();
if(pid == 0)
{
execve("read",args,NULL);
int size = 100;
char buf[size];
close(pfd[1]);
read(pfd[0],buf,size);
printf("%s\n",buf);
}
}
读.c
#include<stdio.h>
#include<unistd.h>
#include<stdlib.h>
int main (int argc,char *argv[],char *envp[])
{
int pfd[2];
pfd[1]= atoi(argv[1]);
close(pfd[0]);
FILE *ptr_file;
char buf[1000];
int sum = 0;
int avg =0;
int no = 0;
int count = 0;
ptr_file =fopen("data.txt","r");
if (!ptr_file)
return 1;
while (fgets(buf,1000, ptr_file)!=NULL)
{
printf(" %s \n",buf);
no = atoi(buf);
sum = sum + no;
printf("Sum = %d \n", sum);
count++;
}
fclose(ptr_file);
avg = sum/count;
printf("Average : %d \n",avg);
write(pfd[1],"hello",6);/*i just write here hello to see that it is working or not*/
return 0;
}
如果您有任何解决方案可以将 read.c 文件的输出输出到 process.c 的子进程,请告诉我。