diff --git a/transpose_of_a_matrix b/transpose_of_a_matrix new file mode 100644 index 000000000..83199b8f3 --- /dev/null +++ b/transpose_of_a_matrix @@ -0,0 +1,31 @@ +//Matrix Transpose + +#include +using namespace std; + +int main() +{ + int n; + cin>>n; + cout<<"\n"; + int a[n][n]; + + for(int i=0;i>a[i][j]; + } + } + cout<<"\n"; + + for(int i=0;i