Ajout des fichiers des sances prcdentes

This commit is contained in:
limes 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;
}

BIN
DEV1.1/entier/bases Executable file

Binary file not shown.

14
DEV1.1/entier/bases.c Normal file
View File

@ -0,0 +1,14 @@
#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("%d\n", 72);
printf("%d\n", 0110);
printf("%d\n", 0x48);
return EXIT_SUCCESS;
}