2
votes
How to create a for loop like command in C++ ?
in C++ you do that with a regular for-loop.
for(variable; condition; increment) {
//stuff goes here
}
In your for-loop:
variable is a counting variable lik …
