C Program to Find Sum of Elements Above and Below Main Diagonal of Matrix
Here is the simple C program to find sum of elements above and below main diagonal of matrix. The matrix should be square matrix. #include<stdio.h> int main() { int i,j,m,n,d1=0,d2=0,a[5][5]; printf(“How many rows and columns:”); scanf(“%d%d”,&m,&n); printf(“Enter matrix elements:\n”); for(i=0;i<m;++i) for(j=0;j<n;++j) { scanf(“%d”,&a[i][j]); if(j>i) d1+=a[i][j]; else if(i>j) d2+=a[i][j]; } printf(\n”Sum of elements above the diagonal=%d\n”,d1); …
C Program to Find Sum of Elements Above and Below Main Diagonal of Matrix Read More »
