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;
}