STRUCTURE CONDITIONAL
for
The for loop is a very flexible loop and at the same time very powerful since it has several interesting ways to implement it, its more traditional form is the following:
for (/ * initialization * /; / * condition * /; / * increment * /) {
/ * code to execute * /
}
Initialization: this part starts the variable that controls the loop and is the first statement that executes the loop. It is only executed once since it is only needed at the beginning of the loop.