From 6b16afc27de390d5152076604bf6d6852557284b Mon Sep 17 00:00:00 2001 From: Orestis <orestis.malaspinas@hesge.ch> Date: Wed, 2 Oct 2019 10:42:19 +0200 Subject: [PATCH] typo --- base_3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base_3.md b/base_3.md index 5151f6c..fd85628 100644 --- a/base_3.md +++ b/base_3.md @@ -164,7 +164,7 @@ for (int i = 0; i < 50; ++i) { p[i] = malloc(70 * sizeof(int)); } - int a = p[5][8]; // on index dans chaque dimension + int a = p[5][8]; // on indexe dans chaque dimension ``` - Ceci est une matrice (un tableau de tableau). -- GitLab