एक ऐसा प्रोग्राम लिखिए जो पूर्णाकों के एक मैट्रिक्स को पढ़कर उसका ट्रांसपोज छापता हो। किसी मैट्रिक्स का ट्रांसपोज उसकी पंक्तियों को कॉलमों में और कॉलमों को पंक्तियों में बदलने से प्राप्त होता है।
Answers
Explanation:
किसी मैट्रिक्स का ट्रांसपोज उसकी ... को पढ़कर उसका ट्रांसपोज छापता हो। ... कॉलमों को पंक्तियों में बदलने से प्राप्त होता ...
एक ऐसा प्रोग्राम लिखिए जो पूर्णाकों के एक मैट्रिक्स को पढ़कर उसका ट्रांसपोज छापता हो।
Explanation:
एक मैट्रिक्स के संक्रमण को खोजने के लिए C प्रोग्राम
#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 a matrix\n");
scanf("%d%d", &m, &n);
printf("Enter elements of the matrix\n");
for (c = 0; c < m; c++)
for (d = 0; d < n; d++)
scanf("%d", &matrix[c][d]);
for (c = 0; c < m; c++)
for (d = 0; d < n; d++)
for (c = 0; c < m; c++)
for (d = 0; d < n; d++)
transpose[d][c] = matrix[c][d];
printf("Transpose of the matrix:\n");
for (c = 0; c < n; c++) {
for (d = 0; d < m; d++)
printf("%d\t", transpose[c][d]);
printf("\n");
}
return 0;
}
Output
Enter the number of rows and columns of a matrix
3
2
Enter elements of the matrix
1 2
3 4
5 6
Transpose of the matrix:
1 3 5
2 4 6