I have recently been thinking about the difference between the two ways of defining an array:
int[] array
int array[]
There is no difference in functionality between both styles of declaration. Both declare array of int.
But int[] a keeps type information together and is more verbose so I prefer it.
int[] a