For Loops
For loops are designed to execute a block of code n times. That means that you can specify a variable, set an initial value to it and mutate this variable after each loop run, until a certain condition is met. For loops can not only work with integer counters.
Usage¶
Here is an example of a simple for
loop:
for int i = 1; i <= 10; i++ {
printf("Round %d\n", i);
}
Optional parentheses
As with the if statement, foreach loop and while loop, the parentheses around the head of the for
loop are optional.
Usage of loop alternatives
For loops should only be used when it is foreseeable how often a block of code will run. If this is not the case, we recommend using the while loop instead.