using for loop c++ code example

Example 1: c++ for loop

//'i' can be any number
//Can be any comparison operater 
//can be any number compared
//can be any mathmatic operater

for (int i = 0; i<100; i++){
//Do thing
}

//more info on operaters
//https://www.w3schools.com/cpp/cpp_operators.asp

Example 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'

Tags:

Cpp Example