It makes no difference, the first syntax is just a C-shaped way to declare an array, and the second with Java.
However, if you declare several variables on the same line, there is a difference:
float[] a, b;
declares 2 arrays whereas
float a[], b;
declares an array and a float, but in my opinion this is not a good practice.
Dici source share