// for loop syntax and explanation with example
for (initialization; condition; increment / decrement)
{
Body of the loop (code)
}
Note: initialization, condition and increment is separated by
" ; " and after closing bracket usually there should not
be any semicolon (;) except some specific cases.
// for loop examples
Code 1:
Output of the ablove code:
1
2
3
4
5
6
7
8
9
Code 2:
Output of the above code:
123456789
Code 3:
output of the above code:
hello
hello
hello