Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.68K
~381 People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for prashanth s j

#include<iostream> using namespace std; int main() { int r1,c1,r2,c2; cout<<"plzz enter the rows n coloumns of 1st matrix respectively"<<endl; cin>>r1; cin>>c1; int **m1=new int *[r1]; for(int i=0;i<r1;i++) { m1[i]=new int[c1]; } cout<<"now enter the rows n coloumns of second matrix respectively"<<endl; cin>>r2; cin>>c2; int **m2=new int *[r2]; for(int y=0;y<r2;++y) { …

Member Avatar for hussnain abass
0
381

The End.