IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
next up previous contents index
Next: Définitions externes Up: La grammaire Previous: Les déclarations

Les instructions

R95instruction :
$\Rightarrow$ instruction-étiquettée
$\Rightarrow$ instruction-composée
$\Rightarrow$ instruction-expression
$\Rightarrow$ instruction-sélection
$\Rightarrow$ instruction-itération
$\Rightarrow$ instruction-saut

R96instruction-étiquettée :
$\Rightarrow$ identificateur : instruction
$\Rightarrow$ case expression-constante : instruction
$\Rightarrow$ default : instruction

R97instruction-composée :
$\Rightarrow$ { liste-de-déclarationsoption liste-d-instructionsoption }

R98liste-de-déclarations :
$\Rightarrow$ déclaration
$\Rightarrow$ liste-de-déclarations déclaration

R99liste-d-instructions :
$\Rightarrow$ instruction
$\Rightarrow$ liste-d-instructions instruction

R100instruction-expression :
$\Rightarrow$ expressionoption ;

R101instruction-sélection :
$\Rightarrow$ if ( expression ) instruction
$\Rightarrow$ if ( expression ) instruction else instruction
$\Rightarrow$ switch ( expression ) instruction

R102instruction-itération :
$\Rightarrow$ while ( expression ) instruction
$\Rightarrow$ do instruction while ( expression ) ;
$\Rightarrow$ for ( expressionoption ; expressionoption ; expressionoption )
instruction

R103instruction-saut :
$\Rightarrow$ goto identificateur ;
$\Rightarrow$ continue ;
$\Rightarrow$ break ;
$\Rightarrow$ return expressionoption ;



Bernard Cassagne
1998-12-09