/* Matrix Column Sum - Program to find sum of column elements of all the columns of a given matrix */ #include #include void main() { int x[10][10], nr, nc, r, c, sum ; clrscr() ; printf("Enter the number of rows and columns: ") ; scanf("%d %d", &nr, &nc) ; printf("Enter elements of the matrix row-wise: \n") ; for(r=0 ; r