Q:

C Program to find sum of main diagonal elements of a matrix

0

C Program to find sum of main diagonal elements of a matrix

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <stdio.h>

#define SIZE 3 

int main()
{
    int A[SIZE][SIZE];
    int row, col, sum = 0;

    
    printf("Enter elements in matrix of size %dx%d: \n", SIZE, SIZE);
    for(row=0; row<SIZE; row++)
    {
        for(col=0; col<SIZE; col++)
        {
            scanf("%d", &A[row][col]);
        }
    }

    
    for(row=0; row<SIZE; row++)
    {
        sum = sum + A[row][row];
    }

    printf("\nSum of main diagonal elements = %d", sum);

    return 0;
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now