Tag: C program to transpose a matrix

31
Dec
2015

C program to transpose a matrix

#include<stdio.h> int main() { int m,n,c,d,matrix[10][10],transpose[10][10]; printf(“enter the number of rows and columns of matrix\n”); scanf(“%d %d”,&m,…