From 6815d68820b87302b99314d2990dfc19622d6442 Mon Sep 17 00:00:00 2001 From: Diego CORBILLON Date: Tue, 8 Sep 2026 16:21:18 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20des=20fichiers=20des=20s=C3=A9ances=20p?= =?UTF-8?q?r=C3=A9c=C3=A9dentes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DEV1.1/TP01/#corbillo-3-tp01-reponses.txt# | 2 ++ DEV1.1/TP02/bases.c | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 DEV1.1/TP01/#corbillo-3-tp01-reponses.txt# create mode 100644 DEV1.1/TP02/bases.c diff --git a/DEV1.1/TP01/#corbillo-3-tp01-reponses.txt# b/DEV1.1/TP01/#corbillo-3-tp01-reponses.txt# new file mode 100644 index 0000000..a53ed23 --- /dev/null +++ b/DEV1.1/TP01/#corbillo-3-tp01-reponses.txt# @@ -0,0 +1,2 @@ +I- +1 \ No newline at end of file diff --git a/DEV1.1/TP02/bases.c b/DEV1.1/TP02/bases.c new file mode 100644 index 0000000..7cebf77 --- /dev/null +++ b/DEV1.1/TP02/bases.c @@ -0,0 +1,9 @@ +#include +#include + +int main(void) { + printf("%d\n", 72); + printf("%d\n", 0110); + printf("%d\n", 0x48); + return EXIT_SUCCESS; +} \ No newline at end of file