2d Input and Output
2d Input and Output
Programmerdouts
programmerdouts.blogspot.com/2019/06/how-to-take-2-d-array-elements-as-input.html
Syntax:
}
}
Q:declare a 2-d array of 3 rows and 4 cols and take their element as input
from the user and print them on screen like an table.?
1/3
#include<stdio.h>
void main()
{ //integer type of multi-dimensional array having 3 rows and 4 columns.
int i,j;
int arr[3][4];
Output:
2/3
enter the element:9
enter the element:10
enter the element:11
enter the element:12
Practice Programs
Programs regarding Arrays
Programs Regarding 2d arrays
Programs regarding matrix
And lot more
3/3