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

added detail bool

parent ad67ca2e
No related branches found
No related tags found
No related merge requests found
......@@ -144,6 +144,7 @@ Type Signification
- En réalité c'est un entier:
- $1 \Rightarrow$ `true`{.C}
- $0 \Rightarrow$ `false`{.C}
- On peut les manipuler comme des entier (les sommer, les multiplier, ...).
<!-- TODO Quiz en ligne -->
<!-- ```C
......@@ -153,6 +154,7 @@ int x = 100;
if (x == 4) { /* faux */ }
if (x) { /* vrai */ }
int x = 100;
while (x−−) { /* répète tant que x est différent de 0 */ }
if (0) { /* faux */ }
......
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