Predict the output of the following program code
main()
{
fork();
printf("Hello World!");
}

Submitted by: Administrator
prints Hello world Hello world
All the statements after the call to fork() will be
executed twice
Submitted by: Administrator

Read Online Unix IPC Job Interview Questions And Answers