How can I save my original array as well as the new changes I made to it into another (bigger) array called NewArray[6][6]? I was trying various things without any good success. Thanks.
With NewArray[6][6]
I wanted to fill in the first 3 rows and columns with the original array.
But then fill in rows and columns 4-6 with the changes I made to the original array which was to multiply the elements in the original by 2.
Basically I want NewArray[6][6] to store the following.
1,2,3,
4,5,6,
7,8,9,
2,4,6,
8,10,12,
14,16,18
I want store it like this, to do later manipulation to all of the element values at once.