笔试题,求下面这段函数的运行结果,会输出几次字符串,求指教 int main(int argc, char *argv[]) { int x; for(x = 0; x < 2; x++){ fork(); printf("String……"); } return 0; }