摘要: #include <sys/types.h>#include <sys/wait.h>#include <unistd.h>#include <stdio.h>int main(){ pid_t pid; char *m; int n; pid=fork(); if(pid==0) { m="this is child"; n=5; } else { m="this is fath... 阅读全文
posted @ 2012-09-28 16:23 Dsp Tian 阅读(2115) 评论(0) 推荐(0) 编辑