Question: In C++ 1. Write a program that takes two dimensional two matrices of any size and apply a. Addition b. Subtraction and c. Multiplication on

In C++
1. Write a program that takes two dimensional two matrices of any size and apply a. Addition b. Subtraction and c. Multiplication on them. For addition and subtraction the size of the matrices should be same. If they differ in size, display a message on output that Addition/Subtraction can't be performed because of different matrices size. For multiplication the number of column of first matrix must be equal to number of rows in second matrix. If they differ, display a message on output that multiplication can't be performed. Note: For multiplication make use of three nested for loops
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
