Skip to content
Snippets Groups Projects
Commit 0c3419ef authored by yassin.elhakoun's avatar yassin.elhakoun
Browse files

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

parent 2b73795f
Branches
No related tags found
No related merge requests found
Pipeline #29171 failed
...@@ -122,10 +122,11 @@ if (x) { // si x s'évalue à `vrai` ...@@ -122,10 +122,11 @@ if (x) { // si x s'évalue à `vrai`
```C ```C
int main() { int main() {
// ... // ...
if (error) if (error) {
return EXIT_FAILURE; return EXIT_FAILURE;
else } else {
return EXIT_SUCCESS; return EXIT_SUCCESS;
}
} }
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment