next up previous
Next: for Up: Control Structures Previous: Control Structures

if


if ( a > b ) { // other operators: >= < <= != ==
   return a;
}
else {
   return b;
}


Andreas Koeller
2000-06-04