Excecute multiple arrays in one line?

Or if you don’t want to deal with all the elements, a simple for loop will do.

for (int i = 0; i < 4; i++) {
  example[i] = 999;
}
1 Like