“PID procesu w C” Kod odpowiedzi

PID procesu w C

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int pid = 0;
    printf("before the fork \n");
    pid = fork(); //create the child process
    printf("after the fork \n");
    if (pid == 0)
    {
        printf("I'm the child process, my pid is &d\n", getpid());
        exit(1);
    }
    else
    {
        printf("I'm the parent process, my pid is &d\n", getpid());
        exit(0);
    }
}
The Bad Programmer

PID procesu w C

# include<stdio.h>

#include <stdlib.h>

int main()

{

    int pid = 0;

    printf("before the fork \n");

    pid = fork(); //create the child process

    printf("after the fork \n");

    if (pid == 0)

    {

        printf("I'm the child process, my pid is &d\n", getpid());

        exit(1);

    }

    else

    {

        printf("I'm the parent process, my pid is &d\n", getpid());

        exit(0);

    }

}
shamain anjum

Odpowiedzi podobne do “PID procesu w C”

Pytania podobne do “PID procesu w C”

Więcej pokrewnych odpowiedzi na “PID procesu w C” w C

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu