for loop c++ syntax and examples

    // 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:
for loop cplus

  
                                      Output of the ablove code:   
                                1
                                2
                                3
                                4
                                5
                                6
                                7
                                8
                                
 
Code 2:
 
1-9 display thru loop

                                                  
                                       Output of the above code:
                                                123456789

                                 
Code 3:
 
hello display
 
                             output of the above code:
                                          hello
                                          hello
                                          hello