Examveda

This program will create . . . . . . . . child processes?
#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


This Question Belongs to Computer Science >> Linux

Join The Discussion

Related Questions on Linux