cpp for loops 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: for loop in c++

for (int i = 0; i < 10; i++)
    {
        cout << i << endl;
    }

Example 4: c++ for loops

#include <iostream>
#define FOR(i,a) for (int i = 0; i < a; i++)

FOR(i, 3) cout << i << endl;

Tags:

Cpp Example