May 2003
Intermediate to advanced
808 pages
32h 24m
English
else keyword — Else part of if statement
statement := if ( condition ) statement else statement
The else keyword introduces
the else part of an if statement.
If the condition is false, the
else statement is executed.
template<typename T>
T abs(T x)
{
if (x < T( ))
return -x;else
return x;
}if, statement, Chapter 4