Loading
There is no difference in these two types of array declaration.
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.
There is no such difference in between these two types of array declaration. It’s just what you prefer to use, both are integer type arrays.
They are semantically identical. The int a[] syntax was only added to help C programmers get used to java. int[] a is much preferable, and less confusing.
Both will Do same Work