how to create tree of processes. one parent and 3 childs.
Answer Posted / vijay kumar reddy
pid= fork();
if(pid>0)
{
fork();
}
else
printf();
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is ipc port?
Explain the initial process sequence while the system boots up?
Tell me set-user-id is related to (in unix)?
How to get or set an environment variable from a program?
What is the full form of ipc?
Please explain fork() system call?
Which ipc is the fastest in unix?
What is daemon?
Explain about daemon?
Explain a zombie?
What are two different models of ipc differentiate both?
What are the various schemes available in ipc?
Explain what are the system calls used for process management?
What is ipc in unix?
Explain the advantage of executing a process in background?