C++ Program for reading, writing and multiplication of the matrices
#include <iostream.h>#include <iomanip.h>#include <conio.h>const int rows = 3; // number of rows in matrix (must be constant)const int columns = 3; // number of columns in matrix (must be constant)void ReadMatrix (float ma[rows][columns])// this function reads matrix from keyboard{ int r, c; cout << "\nPlease enter matrix"; for (r=0; r<rows; r++) { ...