16 lines
184 B
C
16 lines
184 B
C
#include <stdio.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");
|
|
}
|
|
} |