Question: How many hello lines does this program print? 1 #include csapp.h 2 3 4 5 6 7 8 void doit() { if (Fork() == 0)

 How many hello lines does this program print? 1 #include "csapp.h"

How many hello lines does this program print? 1 #include "csapp.h" 2 3 4 5 6 7 8 void doit() { if (Fork() == 0) { Fork(); printf("hello "); return; } return; } 9 10 11 12 13 14 15 int main() { doit(); printf("hello "); exit(0); } 16 17 18

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!