MULTI-DIMENSION ARRAYS
7 programming challenges to help you master the fundamentals of DATA STRUCTURES.
1
Enter a matrix of 4 rows and 2 columns from the user display it in matrix format?
2
Enter two Matrices from user, add the matrices and display the answer?
3
Enter two Matrices from user, subtract the matrices and display the answer?
4
Enter two Matrices from user, multiply the matrices and display the answer?
5
Enter a Matrix from user, copy it in another matrix of same size?
6
Enter the Matrix from user, multiply it with a scalar value and display the answer?
7