C++ for CP code example
Example 1: c++ for loop
#include <iostream>
using namespace std;
int main()
{
int abc = 10;
for (int /*what ever letter you want (here I used i)*/i = 0; i < /*can be any comparison operater(here i used <)*/abc/*any variable to compare*/; i++/*what should happen when the code inside the for loop is executed*/)
{
/*here do some thing that you want to repet*/
cout << i << "\n";/*this will print 1, 2, 3, 4... until 10*/
}
}
Example 2: how do for loops on c++
for ( init; condition; increment ) {
statement(s);
}