This program will create . . . . . . . . child processes?
#include<stdio.h>
#include<unistd.h>
int main()
{
fork();
fork();
fork();
printf("Example\n");
return 0;
}
#include<stdio.h>
#include<unistd.h>
int main()
{
fork();
fork();
fork();
printf("Example\n");
return 0;
}A. 3
B. 5
C. 7
D. 9
Answer: Option C

Join The Discussion