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

Update cours_2.md (ligne 171 opérateur = était utilisé au lieu de ==)

parent 0eea224b
Branches custom_realsense
No related tags found
No related merge requests found
Pipeline #26918 failed
......@@ -168,7 +168,7 @@ if (x) { // si x s'évalue à `vrai`
```C
int x, y;
x = y = 3;
if (x = 2)
if (x == 2)
printf("x = 2 est vrai.\n");
else if (y < 8)
printf("y < 8.\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment