main() { int i; do { i = suivant(); } while (i < 5); } int suivant() { int s = 0; /* static int s = 0; */ return s++; }