hi

how to make function to find if matrix is symmetric or not in c++ ??
matrix could have any size from 1X1 to 10X10.

i use programe borland c++

Well, you should get started, the function should start off looking something like:

bool isSymmetric(int *matrix[], int width, int height) {
   // Code here
}

The rest is up to you.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.