Hi,
I need to create a lot of variables with the same name, but with different numbers after the name, like that(obviously doesn’t work):
void setup(){
for(int i = 10;i>=0;i--){
int "var" + char(i);
}
}
What can i use to accomplish this task?