[Solved] How can I save values produced in a for loop?
So in a for loop, when declaring the temp variable “i” you need to declare it as int i = 1; instead of “i = 1” I assume you already have a value for the variable d but in this case, I just used d = 123. int d = 123; for (int i = … Read more