For Loop
nfor (initialization; Condition; Loop Update)
n {
n statements; //loop body
n } 
nWithin the parentheses of the for statement are three items, separated by semicolons.
nEach of these items is optional and can be described individually
nbut the semicolons must be presented.
n