Skip to content
Snippets Groups Projects

Update cours_3.md (ligne 289 à 298: modifs syntaxe et initialisations variables manquantes)

1 unresolved thread
1 file
+ 0
2
Compare changes
  • Side-by-side
  • Inline
+ 0
2
@@ -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]) {
Loading