C++ Programming Code Examples C++ > Mathematics Code Examples C++ Program to Check Multiplicability of Two Matrices C++ Program to Check Multiplicability of Two Matrices This is a C++ Program to check multiplicability of two matrices. Multiplicability says, if the column if the first matrix matches exactly with the row of the second matrix. #include<conio.h> #include<iostream> #include<math.h> using namespace std; int main(int argc, char **argv) { cout<<"Enter the dimension of the matrix:\n "; int rowA;cin>>rowA; int colA;cin>>colA; cout<<"Enter the dimension of the other matrix:\n "; int rowB;cin>>rowB; int colB;cin>>colB; if(colA == rowB) { cout<<"Matrices are multipilcable"; } else { cout<<"Matrices are not multipilcable"; } }