Write a program to find the normal and trace of a matrix using c
Answers
Answered by
0
The program output is also shown below. * C program to find the trace and normal of a matrix. * * Trace is defined as the sum of main diagonal elements and. * Normal
is defined as square root of the sum of all the elements. #include
<math.h> { static int array[10][10]; int i, j, m, n, sum = 0, sum1
= 0, a = 0, normal;
Similar questions