For example:
a) int [x][y][z]
int [x][y][z]
vs
b) int[x*y*z]
int[x*y*z]
Initi
Use first variant (3-dimensional) because it's easier for understanding and there are less chances to make some logical error (especially if you're using it for modeling 3-dimensional space)