54. Where is the error in this code sequence? (This code compiles and runs, but outputs garbage.)
int [ ] [ ] a = { { 3, 26, 48 }, {5, 2, 9 } };
System.out.println( "The array elements are " + a );
1
Expert's answer
2012-12-05T10:04:25-0500
You must write: System.out.println( "The array elements are" + a[0][0] );
Comments
Leave a comment