I want to pre-increment a value assignment in a for loop
for (int x=0; x<100; x+=increase){
// loop operation here
}
The code above post increments the value, however I want to pre increment it. I know I can pre-increment by one with the ++i
syntax, however is there a way to pre increment through variable assignment.