#include<stdio.h>
#include <stdlib.h>
int main()
{
int i=1;
pid_t j=fork();
i=4;
if(j==0)
{
printf("%d\n",i);
}
i=5; // will this line runs in both parent and child?
}
〜
子プロセスの fork() の後1
、親プロセスがそれをどのように変更しても、結果は 4 であると思いますが、なぜ 1 ではないのですか?