Structure conditionnelle simple

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

» STRUCTURES CONDITIONNELLES - ALGORITHMIQUE vs langage C