intArray = {2,3,4,1,5}
I want this int array to be represented as
2 3 4 1 5
Without using loops is there any way to do this?
when i tried System.out.println(" ".join(a));
error message as follows.
error: incompatible types: int[] cannot be converted to CharSequence