transpose function example in c 2b 2b

Solutions on MaxInterview for transpose function example in c 2b 2b by the best coders in the world

showing results for - "transpose function example in c 2b 2b"
Aidan
03 Jul 2017
1#include<iostream>
2using namespace std;
3int main()
4{
5  int a[10][10], transpose[10][10], row, column, i, j;
6  cin>>row;
7  cin>>column;
8  cout<<"Enter the elements of the matrix:"<<endl;
9  
10  for(int i = 0; i<row; ++i){
11    for(int j=0; j<column; ++j)}
12  cout<<"The matrix is:"<<endl;