<code>System.out.println(arr)</code> (where arr is int[]) prints
- Acheck_circle
A hash-like reference '[I@...'
- B
Compile error
- C
The length
- D
The array contents
Explanation
Default array <code>toString</code> shows class name + hash; use <code>Arrays.toString</code>.