"depot M311"

This commit is contained in:
JunkJumper
2020-05-02 00:01:03 +02:00
parent f0c24b24e0
commit 16e128821d
83 changed files with 0 additions and 2045 deletions

View File

@@ -1,15 +0,0 @@
/*
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;
}