Skip to content
Snippets Groups Projects
Commit a155526a authored by orestis.malaspin's avatar orestis.malaspin
Browse files

Merge branch 'yassin.elhakoun-master-patch-00057' into 'master'

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

See merge request !13
parents 11f09901 0c3419ef
No related branches found
No related tags found
1 merge request!13Update boucles_conditions.md (harmonisation de l'écriture)
Pipeline #29174 passed
......@@ -123,10 +123,11 @@ if (x) { // si x s'évalue à `vrai`
```C
int main() {
// ...
if (error)
if (error) {
return EXIT_FAILURE;
else
} else {
return EXIT_SUCCESS;
}
}
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment