Predict the output of the following program code
main()
{
fork();
printf("Hello World!");
}
Answers were Sorted based on User's Feedback
Answer / shilpa
prints Hello world Hello world
All the statements after the call to fork() will be
executed twice
| Is This Answer Correct ? | 13 Yes | 3 No |
Describe the initial process sequence while the system boots up?
write About fork()?
Explain how do you execute one program from within another?
Which ipc is faster?
What is daemon?
Explain about daemon?
What is IPC? What are the various schemes available?
Explain what are the system calls used for process management?
what is the process id for kernell process
What is fork()?
how to create tree of processes. one parent and 3 childs.
What is a Daemon?