Question: How many hello output lines does this program print? 1 #include csapp.h 2 3 void doit ( ) 4 { 5 Fork ( )

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

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!