if (a > b) max = a; else max = b; if (x > y) { ... /* liste d'instructions */ } else { ... /* liste d'instructions */ } if (a) /* équivalent à if (a != 0) */ { ... }