#include<stdio.h>
main()
{
printf("hello\n");
fork();
}
上記のコードは「hello」を 1 回出力します。以下のコードは「hello」を 2 回出力します。
#include<stdio.h>
main()
{
printf("hello");
fork();
}
上記のコードは、「hello」を 2 回出力します。
誰かこの奇妙な振る舞いを説明してください。
#include<stdio.h>
main()
{
printf("hello\n");
fork();
}
上記のコードは「hello」を 1 回出力します。以下のコードは「hello」を 2 回出力します。
#include<stdio.h>
main()
{
printf("hello");
fork();
}
上記のコードは、「hello」を 2 回出力します。
誰かこの奇妙な振る舞いを説明してください。