[求助]多进程编程问题(fork)
我想实现多个进程并存,用fork函数!可是不知道怎么写..
是这样么?
if((pid=fork())==0)
printf("This is the child process:%d\n",pid);
else
printf("11111111\n");
if((pid2=fork())==0)
printf("This is another child process:%d\n ",pid2);
else
printf("This is the parent process:%d %d\n",pid,pid2);
我觉得这样有问题,可是在网上找了半天还是找不到!!
希望大家帮我下!谢谢!
小弟实在是解决不了了,才发帖问大家的!