18 lines
227 B
C
18 lines
227 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
int main()
|
|
{
|
|
int pid;
|
|
pid = fork();
|
|
if (pid == 0)
|
|
{for(;;)
|
|
printf ("je suis le fils\n");
|
|
}
|
|
else
|
|
{for(;;)
|
|
printf("je suis le père\n");
|
|
}
|
|
return(EXIT_SUCCESS);
|
|
} |