c++ for loop syntax 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: for loops in cpp
for(int i=0; i<=limit; i++)
{
//statement
}
Example 3: create loop c++
// There are 2 loops in ++ :
while(1==1){ }
// | | |
// | What happens while condition is true
// |
// the condition
//for loop
for (int i; i < 10; i++){ }
// |___| |___| |_| |__|
// | | | |
// | | | what happens when conditons is true
// | | what happens each time loop is reapeted
// | The condition in wich the loop is true
// a variable declaratoin
Example 4: for loop in c++
for ( int i = 0; i < 5; i++)
{
cout << "Hello" << endl;
}
// prints hello 5 times.
Example 5: 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 6: c++ for loop syntax
//'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
loop c++C++ By Zearz on Feb 25 2020
for (int i = 0; i < 5; i++) {
cout << i << "\n";
}