Please wait...
THANKU FOR BEING A PART OF OUR JOURNEY TO BRING "REVOLUTION IN EDUCATION"
We Genuinely APPRECIATE your PATIENCE

27
M: +1.00/-0.00

The following C program is executed on a Unix/Linux system:

#include <unistd.h>

int main()

{

int i;

for (i=0; i<10; i++)

if (i%2 == 0) fork();

return 0;

}

The total number of child processes created is ________.

[GATE CS 2019]
A