在邮件末尾添加不需要的字符

时间:2016-10-26 07:39:28

标签: c printing pipe fork message

以下c程序用于通过管道从父进程向子进程(使用fork()创建)发送消息,并在linux终端上运行!

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>

int main(int argc,char *arg[]){
    pid_t child;
    int pipefd[2];
    int ret;
    char message[20];
    ret =pipe(pipefd);


          if((child=fork())==0){
                              printf("The child process \n");
                              close(pipefd[0]);
                                   write(pipefd[1],"Hello from parent",17);

                              }

                              else{
                                   close(pipefd[1]);
                              read(pipefd[0],message,17);
                              printf("Message from parent %s\n",message);
                                   }
                                   return 0;
                                   }

以上代码打印消息&#34;来自父母&#34;但在父母部分的末尾会打印@符号!是什么原因,我该如何纠正呢?

1 个答案:

答案 0 :(得分:1)

发送字符串末尾的空字符。同样适合阅读。

write(pipefd[1],"Hello from parent",18);