diff --git a/slides/cours_3.md b/slides/cours_3.md
index 6c4fce0e3e87b90e894151261b2ecbbd0da89a65..73c2d85582ae86369863658a5f35c9fcf4c31a68 100644
--- a/slides/cours_3.md
+++ b/slides/cours_3.md
@@ -287,8 +287,6 @@ pour i de 1 à SIZE - 1
 
 ```C
 int index = 0;
-int SIZE = 10;
-int tab[SIZE];
 float min = tab[0];
 for (int i = 1; i < SIZE; ++i) {
     if (min > tab[i]) {