"depot M311"

This commit is contained in:
JunkJumper
2020-05-02 00:01:44 +02:00
parent 16e128821d
commit 7c43e9c334
81 changed files with 2045 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
/*
gcc processus_2.c
Exemple : ./a.out PATH
*/
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char* argv[])
{
if (argc != 2)
{
fprintf (stderr, "Syntaxe : %s <nom-de-variable>\n", argv[0]);
exit (1);
}
printf ("\n%s\n\n", getenv (argv[1]));
return EXIT_SUCCESS;
}