Continuer la déclaration en c

Continue is also a loop control statement just like the break statement. 
continue statement is opposite to that of break statement, instead of 
terminating the loop, it forces to execute the next iteration of the loop.
As the name suggest the continue statement forces the loop to continue or 
execute the next iteration. When the continue statement is executed in the loop,
the code inside the loop following the continue statement will be skipped and 
next iteration of the loop will begin.
Heckar