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

This commit is contained in:
Simoes Lukas
2024-09-10 14:03:34 +02:00
parent db750e42fa
commit 1533259a4d
16 changed files with 3340 additions and 0 deletions

22
DEV1.1/TP03/salut.c Normal file
View File

@@ -0,0 +1,22 @@
/* premier programme */
#include <stdlib.h>
#include <stdio.h>
int main(void) {
printf("%c", 'H');
printf("%c", 'e');
printf("%c", 'l');
printf("%c", 'l');
printf("%c", 'o');
printf("%c", ' ');
printf("%c", 'w');
printf("%c", 'o');
printf("%c", 'r');
printf("%c", 'l');
printf("%c", 'd');
printf("%c", '!');
printf("%c", '\n');
return EXIT_SUCCESS;
}