Answers

Question and Answer:

  Home  Unix Inter-Process Communication (IPC)

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

prints Hello world Hello world

All the statements after the call to fork() will be

executed twice

 158 views

More Questions for you: