User`s manual

200 digi.com Keywords
default
Identifies the default case in a switch statement. The default case is optional. It executes only when the
switch expression does not match any other case.
switch( expression ){
case const1:
...
case const2:
...
default:
...
}
do
Indicates the beginning of a do loop. A do loops tests at the end and executes at least once.
do
...
while( expression );
The statement must have a semicolon at the end.
else
The false branch of an if statement.
if( expression )
statement // “statement” executes when “expression” is true
else
statement // “statement” executes when “expression” is false