How many processes does the following piece of code create? Why?
int main()
{
fork();
fork();
fork();
return 0;
}
I was looking for assitance that said build a tree but i came up with 10 processes but I'm not sure if that is right, i created a tree