
The for
loop is the most commonly used
statement in C++. This loop consists of three expressions. The first expression
is used to initialize the index value, the second to check whether or not the
loop is to be continued again and the third to change the index value for
further iteration.
...