ajout fichiers

This commit is contained in:
lecorre
2021-09-22 15:12:02 +02:00
parent 84ccdcaa4e
commit f497652e47
15 changed files with 294 additions and 0 deletions

12
TP2/Exercices/Ex2.c Normal file
View File

@@ -0,0 +1,12 @@
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
int main(int argc, char const *argv[]) {
write(1, "mammouth", 8);
pid_t psid = fork();
if (psid == 0) {
write(1, "\nlapinou", 8);
}
return EXIT_SUCCESS;
}