C program to find the trace of matrix
belongs to collection: C language Two Dimensional (Matrix) solved programs/examples
All Answers
total answers (1)
belongs to collection: C language Two Dimensional (Matrix) solved programs/examples
total answers (1)
Trace of a n x n square matrix is sum of diagonal elements. Given a square matrix, we have to find the trace of matrix.
Program:
The source code to find the trace of Matrix is given below. The given program is compiled and executed using GCC compile on UBUNTU 18.04 OS successfully.
Output:
Explanation:
Here, we created a 3X3 matrix matrix using the 2D array. Then we find the trace of the matrix. After that, we printed the Matrix and trace of matrix on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer