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
相關文章
相關標籤/搜索