Linux进程通信编程

本文介绍了一个使用管道进行进程间通信的C语言程序示例。父进程通过管道向子进程发送字符串“howareyou!”,子进程接收并显示该字符串。此示例展示了fork()、pipe()、write()和read()等系统调用的基本用法。

题目:设计一个程序,要求创建一个管道,复制进程,父进程往管道中写入字符串“how are you!”,子进程从管道中读取并输入字符串“how are you!”。

#include<stdio.h>
#include<stdlib.h>
#include<sys/types.h>
#include<sys/wait.h>
#include<unistd.h>
#include<string.h>
int  main()
{
    pid_t result;
    int n;
    int pipe_fd[2];
    char buf1[100],buf2[100];
    memset(buf1,0,sizeof(buf1));
        if(pipe(pipe_fd)<0)
        {
            printf("error!\n");
            return -1;
        }
    result=fork();
    if(result<0)
    {
        printf("error!\n");
        exit(0);
    }
    else if(result==0)
    {
        close(pipe_fd[1]);
        if((n =read(pipe_fd[0],buf1,100))>0)
        {
            printf("child read %d char,char is %s\n",n,buf1);
            close(pipe_fd[0]);
            exit(0);
        }
    }
    else
    {
        close(pipe_fd[0]);
        printf("please input pipe word \n");
        fgets(buf2,sizeof(buf2),stdin);
        if(write(pipe_fd[1],buf2,strlen(buf2))!=-1)
            printf("parent write to child is: %s\n",buf2);
        close(pipe_fd[1]);
        waitpid(result,NULL,0);
        exit(0);
    }

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

东方隐侠安全团队-千里

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值