next up previous
Next: Structures Up: Mémento C - shell, Previous: Tests

Boucles

Boucles
for (i=1;i<=n;i=i+1) {
  ...
}
while (i<j) {
  ...
}
do {
  ...
} while (i<j);


R. Keriven (Cermics)