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,14 @@
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
int main(){
//printf("NON");
write(STDOUT_FILENO,"NON",3);
if (fork()) {
//printf("OUI\n");
write(STDOUT_FILENO,"OUI\n",4);
}
}