Changes
/* chapter 6 & 8 (résumé) */
===== Operateur logique "AND(E) - ET(F) => &&" =====
compare two expressions and if they the both are true, return a zero'1'. See the behavior of this operator with truth table below:
{| class="wikitable" style="text-align:center;"
===== Operateur logique "OR(E) - OU(F) => ||" =====
compare two expressions and if one of them is true, return a '1'. See the behavior of this operator with truth table below:
{| class="wikitable" style="text-align:center;"
|+ Table de verité pour Operateur &&
|-
! scope="col" | Expression 1
! scope="col" | Expression 2
! scope="col" | E1 && E2 (valeur de retour)
|-
| 0
| 0
| 0
|-
| 0
| 1
| 1
|-
| 1
| 0
| 1
|-
| 1
| 1
| 1
|}
==== Trick ====