GATE Computer Science (CS) 2019 Solved Papers

© examsiri.com
Question : 27 of 65
 
Marks: +1, -0
The following C program is executed on a Unix/Linux system:
#include
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 ________.
  • Your Answer:
Go to Question: