I have recently been thinking about the difference between the two ways of defining an array:
int[] array
int array[]
They are completely equivalent. int [] array is the preferred style. int array[] is just provided as an equivalent, C-compatible style.
int [] array