For Loop Statement

For loop can be used to execute for the specified number of times

Basic Syntax :

for(init count; total count; count increment){
  //code can be execute each iteration
}

init count  : Initialize the variable and assign loop count the count value,

total Count : evaluate the total count, if the count is lesser than the value, the loop iteration

count increment :  Increment the count value, when loop iteration