diff --git a/slides/cours_3.md b/slides/cours_3.md index 4a81514b956c2ae5216ba5c7725d00d1408d7337..dea1f2b3f7d3f191af4d99f692144fb4e7293fc2 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)