以下代码共创建多少个进程?
#include <unistd.h>
#include <stdio.h>
int main()
{
fork();
fork() || fork();
sleep(1);
return 0;
}
11
12
13
14