C Program to check Matrix is an Identity Matrix

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

C Program to check Matrix is an Identity Matrix

In this tutorial, we will learn to create a C program that will check the Matrix is an Identity 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 is an Identity Matrix:-

In this tutorial, we will check the matrix is the identity matrix 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 the matrix is an identity or not using the for loop and the conditional statements. 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.
  • x = it will hold the integer value for the loop.
  • y = it will hold the integer value for the 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 two matrices from the user.

Checking the Matrix is an Identity Matrix or not.

Printing the Matrix is an Identity Matrix or not.

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