Ajout des fichiers des sances prcdentes

This commit is contained in:
2022-09-12 15:49:48 +02:00
parent 90e64a3551
commit 33e0b1bef7
5 changed files with 1878 additions and 0 deletions

BIN
DEV1.1/commande/executable Executable file

Binary file not shown.

File diff suppressed because it is too large Load Diff

10
DEV1.1/commande/salut.c Normal file
View File

@@ -0,0 +1,10 @@
/* premier programme */
#include <stdlib.h>
#include <stdio.h>
int main(void) {
printf("Hello World!\n");
return EXIT_SUCCESS;
}