Horje
c++ for Code Example
c++ for loops
#include <iostream>
#define FOR(i,a) for (int i = 0; i < a; i++)

FOR(i, 3) cout << i << endl;
c++ for
for (int i = 0; i < 7; i++)
{
	cout << i << endl;
}




Cpp

Related
how to write hello world c++ Code Example how to write hello world c++ Code Example
program to find third smallest number c++ Code Example program to find third smallest number c++ Code Example
vector to char array c++ Code Example vector to char array c++ Code Example
equal elements in two arrays in c++ Code Example equal elements in two arrays in c++ Code Example
pycharm Code Example pycharm Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8