We can use a two dimensional array to store a “table” of values.Each element in the array is accessed by TWO indexes – the firstone specifies the row, and the second one specifies the column.It’s pretty easy to simply declare a two dimensional array, sticksome values in there and then print them out. But some problemsrequire you to access the data in something other than the”normal” manner which (row by row, top to bottom) we’ve demonstratedin class. In this lab, you can practice working with 2D arrays bysimply printing out the elements of an array in a different
OR
OR