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 |
How to know whether the message queue is empty or not.
How do you execute one program from within another?
Tell me set-user-id is related to (in unix)?
Describe the initial process sequence while the system boots up?
What is unix ipc?
What are various IDs associated with a process?
How to write the program on full-duplex communication on bidirectional(e.g using two pipes)?
About i-node numbers
Which ipc is the fastest in unix?
Explain what is the process id for kernel process?
set-user-id is related to (in unix)
Explain fork() system call?