next up previous
Next: for statement Up: Compound statements Previous: Compound statements

if statement

if (condition) {
    statements;
} 

if (condition) {
    statements;
} else {
    statements;
} 

if (condition) {
    statements;
} else if (condition) {
    statements;
} else {
    statements;
}



Dennis Seah Mon Jul 17 11:43:42 2006