Can anyone help with this program?
Anything would be helpful...Thanks Guys.
Write a program that creates and initializes two two-dimensional arrays 2 by 3 and 3 by 2. Using the concept of C++ for/while loop, multiple the two matrices together and display the new matrix. Make sure your program validates the rule above before multiplying the two matrices
Looks like you have declared and initialized the two arrays okay.
I recommend creating a routine that outputs the arrays, to confirm that the two arrays have, indeed, been assigned correctly. You are going to need this routine anyhow, to output the result of the matrix multiplication.
Also, I see two for loops in your present code; however, you don't do anything in them. And you seem to be using the pre-increment operator (e.g. - ++row). Are you sure you want to do that?