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 |
Please explain fork() system call?
Tell me set-user-id is related to (in unix)?
What are the system calls used for process management:
Predict the output of the following program code main() { fork(); printf("Hello World!"); }
set-user-id is related to (in unix)
What is ipc in unix?
How can a parent and child process communicate?
How to know whether the message queue is empty or not.
What is i-node numbers?
what is the process id for kernell process
Explain how do you execute one program from within another?
what is the very first process created by kernell