0
3.8kviews
Write a program which will accept 2 dimensional square matrix and find out transpose of it. Program should not make use of another matrix.
1 Answer
1
269views

Program:

#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, &n);
printf("Enter the elements of matrix:\n");
for (c = 0; c < m; c++)
for(d = 0; d < n; d++)
scanf("%d",&matrix[c][d]);
for (c = 0; …

Create a free account to keep reading this post.

and 3 others joined a min ago.

Please log in to add an answer.