SCR/SCR3.1/devoir27/ex1/gdf1.c

18 lines
210 B
C
Raw Normal View History

2023-12-10 15:48:26 +01:00
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
int main(void){
pid_t x, x1, x2, x3;
x1 = fork();
if (x1 == 0){
x2=fork();
if (x2 == 0)
x = fork();
x3=fork();
}
}