for loops cpp 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 Loop in C++
for (int i = start; i < stop; i = i + step){
// statement 1
// statement 2
// etc
}
Example 3: c++ for loop
#include <iostream>
using namespace std;
int main()
{
int abc = 10;
for (int i = 0; i < abc; i++)
{
cout << i << "\n";
}
}