You could use an array of pointers,
int *mine_field[11] = {mines1,mines2};
Or put values directly in,
int mine_field[11][4] = {{0,1,2,3},{4,5,6,7}};
I only put the first two entries in, just fill in the rest.
You could use an array of pointers,
int *mine_field[11] = {mines1,mines2};
Or put values directly in,
int mine_field[11][4] = {{0,1,2,3},{4,5,6,7}};
I only put the first two entries in, just fill in the rest.