"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

11
S3T_TP_00_REVISIONS/hello.c Executable file
View File

@@ -0,0 +1,11 @@
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
int main (int argc, char * argv[], char * envp[])
{
assert (argc == 2);
//if (argc != 2) {fprintf (stderr, "\nSyntaxe : %s <chaine> \n\n", argv[0]); exit (1); }
printf ("\nhello %s\n\n", argv[1]);
}