declaration of multi dimensional array in java

Solutions on MaxInterview for declaration of multi dimensional array in java by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "declaration of multi dimensional array in java"
Renata
02 Feb 2019
1int[][] intArray = new int[10][20]; //a 2D array or matrix
2int[][][] intArray = new int[10][20][10]; //a 3D array
3
similar questions