It has been a long time since i do C++ programming and I am stuck on this question. I don't remember how to solve this kind of question. haha
Part 1:
Develop a C++ program which asks the user for the choice of either 3x3 or 4x4 2-dimensional array (use 'if' statement). once the choice is made, create either:
two 3x3 or arrays (A and B) by assigning random numbers, (0 to 100), to the elements of the arrays or
two 4x4 or arrays (C and D) by assigning random numbers, (0 to 100), to the elements of the arrays.
use integer variables.
Part 2:
Continue the C++ program by multiplying the created arrays "A and B" or "C and D" (depending on the user's choice) to produce array E(3x3) or F(4x4).
use 'for' loops.