+ 1
What is the difference between int arr[ ] and int [ ] arr
2 Antworten
+ 7
I've just googled)) and there is a difference.
You can define multiple arrays of the same type with int [ ] arr1, arr2, arr3 ( but its not a best practice)
And just one with int arr[ ]
+ 4
Both give the same result.
I don't know any functional difference..