c++ all for loop syntax code example
Example 1: c++ for loop syntax
for(int i =0; i<6;++i){//initialize;condition;updation
cout<<i<<endl;//code block
}//first it initializes, then checks the condition, then runs the code block and at last updates 'i'
Example 2: for loop in c++
for (int i = 0; i < 10; i++)
{
cout << i << endl;
}