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