Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #107.55K
~428 People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for dss1984

#include<stdio.h> #include<conio.h> void main() { int a[10][10],b[10][10],d[10][10],i,j,r,c; clrscr(); printf("enter the value for ROWS:"); scanf("%d",&r); printf("enter the value of COLUMNS:"); scanf("%d",c); for(i=0;i<r;i++) { for(j=0;j<c;j++) { printf("enter the element:"); scanf("%",&a[i][j]); } } for(i=0;i<r;i++) { for(j=0;j<c;j++) { printf("\t %d",a[i][j]); } { printf("\n"); } } for(i=0;i<r;i++) { for(j=0;j<c;j++) { printf("enter the element:"); scanf("%",&b[i][j]); } …

Member Avatar for ameya potnis
0
428

The End.