1int arrayOne[100]; /// One dimensional
2int arrayTwo[10][10];
3
4for(int i = 0;i<10;i++){
5 for(int j = 0;j<10;j++){
6 arrayTwo[i][j] = arrayOne[(i * 10) + j];
7 //replace 10 width the width of the array when its multidimensional
8 }
9}
10
11//pee pee poo poo :))))(((