C语言无名管道实现父子进程间通讯

/** *父子进程中管道通讯 * */ #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <string.h> #include <error.h> #include <sys/types.h> #define SIZE 128 //缓存区大小 char buffer[SIZE]; //缓存区 i
相关文章
相关标签/搜索