BUT2/SCR/SCR2/TP03/ex1-stdio.c
2023-10-23 13:23:36 +02:00

13 lines
132 B
C

#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
int main(){
printf("NON");
if (fork()) {
printf("OUI\n");
}
}