The
initialization statement is executed only once at the beginning of the for
loop. Then the test expression is checked by the program. If the test
expression is false, for loop is terminated. But if test expression is true
then the code/s inside body of
for
loop
is executed and then update expression is updated. This process repeats until
test expression is false.
0 comments:
Post a Comment