how to create tree of processes. one parent and 3 childs.



how to create tree of processes. one parent and 3 childs...

Answer / vijay kumar reddy

pid= fork();
if(pid>0)
{
fork();
}
else
printf();

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More Unix IPC Interview Questions

what about the initial process sequence while the system boots up?

1 Answers  


What are the various schemes available?

0 Answers  


What are the system calls used for process management:

5 Answers  


What is Inode.

2 Answers   HCL,


what is the very first process created by kernell

5 Answers  






Explain what are the system calls used for process management?

0 Answers  


What is daemon?

0 Answers  


What is a zombie?

10 Answers  


What is IPC? What are the various schemes available?

5 Answers  


Explain what is the process id for kernel process?

0 Answers  


Tell me set-user-id is related to (in unix)?

0 Answers  


What is fork()?

0 Answers  


Categories