From 6a7f43610b64ed0d3e3e4db96ebe8cebfa49cc86 Mon Sep 17 00:00:00 2001 From: Orestis <orestis.malaspinas@pm.me> Date: Mon, 30 Sep 2024 07:47:48 +0200 Subject: [PATCH] other init --- slides/cours_3.md | 1 + 1 file changed, 1 insertion(+) diff --git a/slides/cours_3.md b/slides/cours_3.md index 4a81514..dea1f2b 100644 --- a/slides/cours_3.md +++ b/slides/cours_3.md @@ -258,6 +258,7 @@ for (int i = 0; i < SIZE; ++i) { tab[i] = rand() / (double)RAND_MAX * 10.0 - 5.0; // tab[i] contient un double dans [-5;5] } +int other_tab[4] = {0}; // pareil que {0, 0, 0, 0} ``` # Recherche du minimum dans un tableau (1/2) -- GitLab