How do you store an array into another array?
can you store a multidimensional array into an array? if so how?

A multidimensional array IS an array of arrays. A grid is basically an array running up-down with each element containing a left-right array. int[][] multiArr = new int[5][5]; //creates array of 5 elements, each element containing an array of 5 elements. (5x5 grid)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.