add TP03 SCR

This commit is contained in:
2025-10-08 15:48:44 +02:00
parent 6ceeffac0e
commit 9bf3a922b2
10 changed files with 132 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");
}
}