#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; c < m; c++) for( d = 0 ; d < n ; d++ ) transpose[d][c] = matrix[c][d]; printf("Transpose of entered matrix :-\n"); for (c = 0; c < n; c++) { for (d = 0; d < m; d++) printf("%d\t",transpose[c][d]); printf("\n"); } return 0; }
Subscribe to:
Post Comments (Atom)
Download APPVN Application
Click On The Link Below To Download https://drive.google.com/file/d/0B9_t9aTL848ceUNoQ0lUMnJzTFE/view?usp=drivesdk
-
#include <stdio.h> int main ( ) { int m , n , c , d , matrix [ 10 ] [ 10 ] , transpose [ 10 ] [ 10 ] ; printf ( ...
-
#include<stdio.h> #include<conio.h> void main() { clrscr(); printf(" My Name Is KHAN"); ...
-
Click On The Link Below To Download https://drive.google.com/file/d/0B9_t9aTL848ceUNoQ0lUMnJzTFE/view?usp=drivesdk
No comments:
Post a Comment