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

This commit is contained in:
2023-09-12 14:25:11 +02:00
parent 42f71afb7a
commit 84006e98ee
24 changed files with 183 additions and 0 deletions

9
DEV1.1/TP02/limite.c Normal file
View File

@@ -0,0 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("%d\n", 1000000);
printf("%o\n", 1000000);
printf("%x\n", 1000000);
return EXIT_SUCCESS;
}