这会产生 16 个副本hello吗?如果没有,有多少?
hello
#include <stdio.h> #include <unistd.h> int main(void) { printf("hello\n"); fork(); fork(); fork(); fork(); return(0); }
c
c ×1