The for loop Repetitive Structure
The for loop handles details of the counter-controlled loop automatically
The initialization of the the loop control variable, termination conditional test and modification are handled in for loop structure
for ( i = 1; i < 11; i++)
initialization modification