Skip to content
Snippets Groups Projects

Update boucles_conditions.md (harmonisation de l'écriture)

1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
@@ -122,10 +122,11 @@ if (x) { // si x s'évalue à `vrai`
```C
int main() {
// ...
if (error)
if (error) {
return EXIT_FAILURE;
else
} else {
return EXIT_SUCCESS;
}
}
```
Loading