"depot M311"

This commit is contained in:
JunkJumper
2020-05-01 23:58:52 +02:00
parent 54abdaaeb7
commit 0a828aa477
84 changed files with 2070 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/*
gcc processus_1.c
Exemple : ./a.out un deux trois
*/
#include <stdio.h>
#include <unistd.h>
int main(int argc, char * argv[]){
int i;
for (i=1; i< argc; i++) {
printf("argument %d: %s\n",i,argv[i]);
}
printf("\nPID = %d - PPID = %d \n\n",getpid(), getppid());
return 0;
}