我是靠谱客的博主 怡然哈密瓜,最近开发中收集的这篇文章主要介绍Linux管道编程实例,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include <unistd.h>
#include <signal.h>
#include <stdio.h>

char parent[] = "a message from parrent";
char child[] = "a message from child";

main ()
{
    int chan1[2], chan2[2];
    int pid;
    char buf[100];
    pipe(chan1);
    pipe(chan2);
    pid=fork();
    if(pid > 0)
    {
        close(chan1[0]);
        close(chan2[1]);
        write(chan1[1], parent, sizeof(parent));
        close(chan1[1]);
        read(chan2[0],buf, 100);
        printf("%sn", buf);
        close(chan2[0]);
    }
    else if(pid == 0)
    {
        close(chan1[1]);
        close(chan2[0]);
        read(chan1[0], buf, 100);
        printf("%sn", buf);
        write(chan2[1], child, sizeof(child));
        close(chan2[1]);
        close(chan1[0]);
    }
}




最后

以上就是怡然哈密瓜为你收集整理的Linux管道编程实例的全部内容,希望文章能够帮你解决Linux管道编程实例所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部