parcourire tableau c
snippet in c
parcourire tableau c
user2446
for (i = 0 ; i < tailleTableau ; i++)
{
printf("%d\n", tableau[i]);
}
return 0;
}