ityeoboy9314 ityeoboy9314 15-04-2024 Computers and Technology contestada Including the initial parent process, how many processes are created by the program below? Please explain. #include #include int main() { for (int i = 0; i < 4; i++) { fork() ; } return 0; }