Here're two progs to transpose and mxn matrix and reverse the same.
//TO REVERSE A 3X4 MATRIX.//
#include<iostream.h>
#include<conio.h>
#include<iomanip.h>
void main()
{
clrscr();
int a[3][4];
for(char i=0;i<3;++i)
{
for(char j=0;j<4;++j)
cin>>a[i][j];
}
for(i=2;i>=0;--i)
{...
Hi Guest we just wanted to alert you to a major change in the forum. We will no longer be allowing the posting of outgoing links. Please use the attachment feature to attach media to your posts.