ZZZZ
ZZZZ
int main() {
cout << "Enter rows and columns for 1st matrix: ";
cout << "Enter rows and columns for 2nd matrix: ";
cout << "Error! column of 1st matrix not equal to row of 2nd.\n";
cout << "Enter rows and columns for 1st matrix: ";
cout << "Enter rows and columns for 2nd matrix: ";
cout << endl << "Enter elements of matrix 1:" << endl;
cout << "Enter element c" << i + 1 << j + 1 << " : ";
cout << endl << "Enter elements of matrix 2:" << endl;
cout << "Enter element z" << i + 1 << j + 1 << " : ";
cin >> z[i][j];}
mult[i][j] = 0;
if (j == c2 - 1)
return 0;