BUT2/SCR/SCR2/TP03/ex1-stdio.c

13 lines
132 B
C
Raw Normal View History

2023-10-12 16:39:49 +02:00
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
int main(){
printf("NON");
if (fork()) {
printf("OUI\n");
}
}