suivant:
Instruction continue
monter:
Instruction break
précédent:
Instruction break
Table des matières
Exemple
L'instruction
for
ci-dessous est stoppée au premier
i
tel que
t[i]
est nul :
for (i = 0; i < N; i = i + 1) if (t[i] == 0) break;
Matthieu Moy 2017-02-08