Joined
Last Seen
-1 Reputation Points
- 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
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: #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]); } … |
The End.