当前位置: 技术问答>linux和unix
linux c语言编程 ------管道问题-----程序无法通过---求帮助
来源: 互联网 发布时间:2016-07-22
本文导语: 程序如下: /*以下为父子进程使用无名管道进行通信的程序 */ #include #include #include #define BUFSIZE 50; int main() { pid_t pid; int p_des1[2]; int p_des2[2]; char Text1[50]="i'm father!n"; char Text2[50]="i'm...
程序如下:
/*以下为父子进程使用无名管道进行通信的程序
*/
#include
#include
#include
#define BUFSIZE 50;
int main()
{
pid_t pid;
int p_des1[2];
int p_des2[2];
char Text1[50]="i'm father!n";
char Text2[50]="i'm child!n";
char ctmp[50];
char ptmp[50];
if (pipe(p_des1)
/*以下为父子进程使用无名管道进行通信的程序
*/
#include
#include
#include
#define BUFSIZE 50;
int main()
{
pid_t pid;
int p_des1[2];
int p_des2[2];
char Text1[50]="i'm father!n";
char Text2[50]="i'm child!n";
char ctmp[50];
char ptmp[50];
if (pipe(p_des1)