Browse the glossary using this index

Special | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | ALL

C

Conditions imbriquées

Algorithmique
Langage C
SI cond1 ALORS
SI cond2 ALORS instructions
FINSI
FINSI
if (cond1) {
if (cond2) { instructions;
}
}

Entry link: Conditions imbriquées