For loop - syntax
for (initialize exp; test exp; update exp)
initialize exp : done only once at the start
test exp: This is a condition that evaluates to TRUE or FALSE.
update exp: This specifies how to update condition.
Note: for loop is used when the number of times to be repeated is fixed/known apriori.