Possible Duplicate:
Difference between int[] array and int array[]
Is int[] arr; functionally the same as int arr[];?
Is |
|||||||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Yes. You can put the braces in either place when declaring an array. Bonus: you can even put 'em here:
|
|||||
|
|
Yes, the functionality is the same. You can have the braces anywhere.
is equivalent to
|
|||||||
|
|
It's just the matter of style. You can pick the style you like. They perform exactly the same. Some claim that if you write "int[] array", it will be clearer that it's an array of integer rather than writing "int array[]". |
|||
|
|
|
It is, it's just to appease C++ developers they include int arr[]. (Or at least what I told in school) |
|||
|
|