我有这个代码示例,但我不明白为什么这个代码打印 00000000 而不是 000000。
When i=0 , print 00
When i=1 , there is 4 process and it will print 0000.
这是程序:
main(){
int i;
for(i=0; i<2 ;i++){
fork();
printf("0");
}
}
我有这个代码示例,但我不明白为什么这个代码打印 00000000 而不是 000000。
When i=0 , print 00
When i=1 , there is 4 process and it will print 0000.
这是程序:
main(){
int i;
for(i=0; i<2 ;i++){
fork();
printf("0");
}
}