C Program to check Matrix is a Symmetric Matrix

In this tutorial you will learn about the C Program to check Matrix is a Symmetric Matrix and its application with practical example.

C Program to check Matrix is a Symmetric Matrix

In this tutorial, we will learn to create a C program that will check the Matrix is a Symmetric Matrix using C programming.

Prerequisites

Before starting with the tutorial, we assume that you are the best aware of the following C programming topics:

  • Operators in C Programming.
  • Basic Input and Output function in C Programming.
  • Basic C programming.
  • For loop in C programming.

Algorithm:-

Program to check the matrix:-

In this tutorial, we will check the matrix is symmetric or not with the help of the c programming. First, we will take the size and the elements of the matrix. Then we will check transpose the matrix using the code. Now we will compare the two matrices and if they are symmetric or not. Then will print the output to the user.

Program:-

Output:-

In the above program, we have first initialized the required variable.

  • a[10][10]= it will hold the integer value.
  • rw = it will hold the integer value for loop.
  • cl = it will hold the integer value for loop.
  • i= it will hold the input integer value for rows.
  • j= it will hold the input integer value for columns.

Taking the size and the elements of the matrix from the user.

Checking the matrix is symmetric or not a symmetric matrix.

Printing the Matrix is symmetric or not.

In this tutorial we have learn about the C Program to check Matrix is a Symmetric Matrix and its application with practical example. I hope you will like this tutorial.