Q:

Write C Program to Find sum of each row and columns of a matrix

0

Write C Program to Find sum of each row and columns of a matrix

All Answers

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

I have used CodeBlocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.

#include <stdio.h>
 
#define size 3 // Defining Matrix size
 
int main()
{
    int Arr[size][size];
    int row, col, sum = 0;
 
    //Inputing elements in matrix from user
    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", &Arr[row][col]);
        }
    }
 
    // Calculating sum of elements of each row of matrix
    for(row=0; row<size; row++)
    {
        sum = 0;
        for(col=0; col<size; col++)
        {
            sum += Arr[row][col];
        }
        //Printing Sum of row elements
        printf("Sum of elements of row %d = %d\n", row+1, sum);
    }
 
    // Finding sum of elements of each columns of matrix
    for(row=0; row<size; row++)
    {
        sum = 0;
        for(col=0; col<size; col++)
        {
            sum += Arr[col][row];
        }
        //Printing Sum of columns elements
        printf("Sum of elements of column %d = %d\n", row+1, sum);
    }
 
    return 0;
}

Result:

Enter elements in matrix of size 3x3: 

1

2

3

4

5

6

7

8

9

Sum of elements of row 1 = 6

Sum of elements of row 2 = 15

Sum of elements of row 3 = 24

Sum of elements of column 1 = 12

Sum of elements of column 2 = 15

Sum of elements of column 3 = 18

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

total answers (1)

Write C Program to Find the Frequency of Odd & Eve... >>
<< Write C Program to Find the Transpose of a given M...