Including the initial parent process, how many processes are created by the program:
#include <stdio.h>
#include <unistd.h>
int main()
{
/* fork a child process */
fork();
/* fork a child process */
fork();
/* and fork another */
fork();
return 0;
}