Answers for "how to do a for in a function c++"

C++
0

for statement in c++

#include iostream
using namespace std;

int main{
  for(int i=0; i<100; i++)
  {
    cout<<"Hello World";
  }
  
  return 0;
}
Posted by: Guest on July-18-2021
0

define for loop c++

#define FOR(x,a,b) for(int x = a; x <= b; x++)
#define FOD(x,a,b) for(int x = a; x >= b; x--)
#define REP(x,a,b) for(int x = a; x < b; x++)
#define RED(x,a,b) for(int x = a; x > b; x--)
Posted by: Guest on May-05-2021

Code answers related to "how to do a for in a function c++"

Browse Popular Code Answers by Language