Warum gibt getppid () vom Kind 1 zurück?

Ich habe das Programm ausgeführt

#include<stdio.h>
#include <unistd.h>
main()
{
    pid_t pid, ppid;
    printf("Hello World1\n");
    pid=fork();
    if(pid==0)
    {
        printf("I am the child\n");
        printf("The PID of child is %d\n",getpid());
        printf("The PID of parent of child is %d\n",getppid());
    }
    else
    {
        printf("I am the parent\n");
        printf("The PID of parent is %d\n",getpid());
        printf("The PID of parent of parent is %d\n",getppid());        
    }
}

Die Ausgabe, die ich bekam, war.

$ ./a.out 
Hello World1
I am the parent
The PID of parent is 3071
The PID of parent of parent is 2456
I am the child
The PID of child is 3072
The PID of parent of child is 1

Ich konnte die Zeile nicht verstehen

Die PID des Elternteils des Kindes ist 1

Es sollte 3071 gewesen sein?

Antworten auf die Frage(2)

Ihre Antwort auf die Frage