Answers for "transpose function example in c++"

C++
0

transpose function example in c++

#include<iostream>
using namespace std;
int main()
{
  int a[10][10], transpose[10][10], row, column, i, j;
  cin>>row;
  cin>>column;
  cout<<"Enter the elements of the matrix:"<<endl;
  
  for(int i = 0; i<row; ++i){
    for(int j=0; j<column; ++j)}
  cout<<"The matrix is:"<<endl;
Posted by: Guest on August-29-2021

Code answers related to "transpose function example in c++"

Browse Popular Code Answers by Language