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,16 @@
#include <stdio.h>
#include <stdlib.h>
# include <sys/types.h>
# include <unistd.h>
int main() {
fork();
if (fork()){
fork();
}
printf("A\n");
sleep(20);
}