Question: 2. Write a C++ program where you declare 3 different 55 two dimensional arrays. Fill the first array with numbers from 1 to 25 .
2. Write a C++ program where you declare 3 different 55 two dimensional arrays. Fill the first array with numbers from 1 to 25 . Fill the second one in the reverse order, from 25 to 1 . Print them in the shape of a 55 square. Then, fill the third array with the multiplication of each corresponding element of the other two. Lastly, print the third array again in the shape of a 55 square. There is an important constraint for this question. You can not use subscript " " ] " operator unless you are using it for array declaration. TO-DO @ HOME (solve this question too, if you have finished the first two before the lab ends): Discover the relations between pointers and array from your answer to previous question. Then, write the program in the second question one more time. However, this time it is completely forbidden to use subscript "[]" operator
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
