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 |
Which ipc is faster?
In Unix inter process communication take place using?
what is the very first process created by kernell
What are the system calls used for process management?
About i-node numbers
What is an advantage of executing a process in background?
What is ln(linking)?
How can a parent and child process communicate?
What is unix ipc?
How to write the program on full-duplex communication on bidirectional(e.g using two pipes)?
Please explain fork() system call?
About ln(linking)