#include <stdio.h>
int main()
{
int i;
int j;
int a[3][3]={0};
int b = 0;
int c = 0;
for(i = 0 ; i < 3 ; i++)
for(j = 0 ; j < 3 ; j++)
{
printf("enter the numbers\n");
scanf("%d",&a[i][j]);
}
for(i = 0 ; i < 3 ; i++)
for(j = 0 ; j < 3 ; j++)
{
if(i == j)
b = b + a[i][j];
if(i + j == 2)
c = c + a[i][j];
}
printf("b=%d\n",b);
printf("c=%d\n",c);
return 0;
}
int main()
{
int i;
int j;
int a[3][3]={0};
int b = 0;
int c = 0;
for(i = 0 ; i < 3 ; i++)
for(j = 0 ; j < 3 ; j++)
{
printf("enter the numbers\n");
scanf("%d",&a[i][j]);
}
for(i = 0 ; i < 3 ; i++)
for(j = 0 ; j < 3 ; j++)
{
if(i == j)
b = b + a[i][j];
if(i + j == 2)
c = c + a[i][j];
}
printf("b=%d\n",b);
printf("c=%d\n",c);
return 0;
}