Ajout des fichiers des séances précédentes

This commit is contained in:
2025-09-09 16:36:11 +02:00
parent cad14ba88f
commit 09c121ea7c
6 changed files with 725 additions and 0 deletions

13
DEV1.1/TP01/#salut.c# Normal file
View File

@@ -0,0 +1,13 @@
/* premier programme */
#include <stdlib.h>
#include <stdio.h>
int main(void) {
printf("%c", "H");
printf("%c", "e");
printf("%c", "l");
printf
return EXIT_SUCCESS;
}