Exemple de boucle for

Initialisation d'un tableau à zéro :
#define N 10
int t[N];
for (i = 0; i < N; i = i + 1) t[i] = 0;



Matthieu Moy 2012-06-20