Pages

Monday, February 16, 2015

C program to find sum of elements above and below the main digonal of a matrix


C program to find sum of elements above and below the main digonal of a matrix

#include<stdio.h>
#include<conio.h>

void main()
{
int i,j,m,n,d1=0,d2=0,a[5][5];
clrscr();
printf("How many rows and columns:");
scanf("%d%d",&m,&n);
printf("Enter matrix elements:
");


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("Sum of elements above the digonal=%d
",d1);

printf("Sum of elements below the digonal=%d",d2);
getch();
}

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.