Structure conditionnelle complète (SI-SINON)

Algorithmique
Langage C
SI (condition) ALORS
  instructions1
SINON instructions2
FINSI
if (condition{
  instructions1;
} else { instructions2;
}

» STRUCTURES CONDITIONNELLES - ALGORITHMIQUE vs langage C