Gagan G Saralayagagang.hashnode.devยทMar 10, 2024C program to input a matrix from the user and find the row sum and the column sum.This program inputs a matrix from the user and then uses the "i" and "j" value from the for loop to choose the element from the matrix and add them. for(int i=0;i<m;i++) { int csum=0; for(int j=0;j<n;j++) { csum=csum+arr[j][i]; } printf("\nSum of al...7daystreakAdd a thoughtful commentNo comments yetBe the first to start the conversation.