forchar

  1. The Incredible

    Incredible Input Incredible Output (ProgLang-C++)(Comp-TC++)

    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) {...
Top Bottom