Multiplication of two Matrices
A 2D Array is Used for Matrix, 1st Matrix size is taken first then 1st Matrix is taken
Then, 2st Matrix size is taken first then 2st Matrix is taken
After That if no of columns of 1st Matrix is equal to no of rows of 2nd Matrix
Then, Valid Multiplication is Made
Otherwise Returns "Invalid Size of Matrix"
Describe the Corrections which are required
- On line 48 the sum value should be inserted into the 2D array called mul instead of the array called twoDarr1.
Language: Java