Changes

Langage C

314 bytes added, 18:07, 23 September 2015
/* LOOP FOR */
* [1]: "i = 0" -> initialisation de la/les variables de test
* [2]: "i < y" -> à chaque fin de boucle ce test est effectué pour savoir si on peut sortir de la boucle ou non => le test doit être positif sinon on continue dans la boucle
* [3]: "i++" -> si le test non positive, on passe à la 3ème expression qui permet de gérer la/les variables qui
''In English'':
 
* [1]: "i = 0" -> the first expression corresponds at the variable's initialisation
* [2]: "i < y" -> the second expression corresponds at the test in end loop - if the test is positive, it goes out of the loop.
* [3]: "i++" -> the third expression allows if the test is not positive to move the variable(s)
==== Trick ====
952
edits