Question: #include using namespace std; int main ( ) { int mrow, mcol; cout < < Enter the number of rows and columns: ; cin

#include
using namespace std;
int main()
{
int mrow, mcol;
cout << "Enter the number of rows and columns: ";
cin >> mrow >> mcol;
while (// check if number of columns and rows are same )// input validation
{
cout << "The number of rows and columns must be same." << endl;
/*
Enter your code
*/
}
cout << "Enter the values for the matrix:
";
int A[mrow][mcol];
/*
Enter your code
*/
// code to find if matrix is symmetrical
/*
Enter your code
your code will appropriately output one of the statements
cout << "The matrix is not symmetrical." << endl;
cout << "The matrix is symmetrical." << endl;
*/
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!