This commit is contained in:
2025-09-25 13:53:00 +02:00
parent bbb9f49737
commit 87565cf26c
25 changed files with 450 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
int main(){
printf("NON");
if (fork()) {
printf("OUI\n");
}
}