for loop
The simplest form of a loop is a for loop. for loop specifies initial configuration of the loop variable, the exit condition and optionally a change of a variable with each iteration. By default if a step of changing variable value is not specified, then with each iteration of this loop, loop variable will be adjusted by one.