/* Matrix symmetric - Program to check whether a given matrix is symmetric or not */ #include #include void main() { int x[10][10], nr, nc, r, c, flag ; clrscr() ; printf("Enter the number of rows and columns: ") ; scanf("%d %d", &nr, &nc) ; if(nr==nc) /* checking for square matrix */ { printf("Enter elements of the matrix row-wise: \n") ; for(r=0 ; r