The following C program is executed on a Unix/Linux system:
# include
int...
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
The following C program is executed on a Unix/Linux system: # include int main ( ) { int i; for (i = 0; i < 5; i++) if (i % 2 ) fork ( ); return 0; } How many child processes are created?