c++ for loops

C++
for(int i=0; i<=limit; i++)
{
	//statement
}#include <iostream>
#define FOR(i,a) for (int i = 0; i < a; i++)

FOR(i, 3) cout << i << endl;//'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";
}//'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.aspfor (int i = 0; i <= 10; i = i + 2) {
    cout << i << "\n";
}
  
Source

Also in C++: