Answers for "looping program in c++ example"

2

For loop c++

for(initialization; condition ; increment/decrement) {
   statement(s);
}
Posted by: Guest on April-30-2021
2

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'
Posted by: Guest on March-28-2021

Browse Popular Code Answers by Language