+ 1
perhaps you need some example, but definition is this:
14.5.Â
IfThenElseStatementNoShortIf:
if ( Expression )
StatementNoShortIfÂ
elseÂ
StatementNoShortIf
StatementNoShortIf:
IfThenElseStatementNoShortIf
Block
...
Block:
{Â [BlockStatements]Â }
//where shortif is IfThenStatement means if without else
//other version is
IfThenElseStatement:
if ( Expression )Â
StatementNoShortIfÂ
elseÂ
Statement
Statement:
IfThenStatement
IfThenElseStatement
Block
...