C 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...
gagang.hashnode.dev2 min read