There are two types of Arrays
Data_type var_name[Expression];
int ex[5] = { 10, 5, 15, 20, 25} ; char word[10] = { 'h', 'e', 'l', 'l', 'o' } ;
// Program to print the element of Array #include <stdio.h> int main() { /*an array with 5 rows and 2 columns*/ int a[5][2] = {{0,0},{1,2},{2,4},{3,6},{4,8}}; int i,j; /* Output each array elements value*/ for(i=0; i<5; i++); { for(j=0; j<2; j++); { printf("a[%d][%d]=%d",i,j,a[i][j]); } } return 0; }
a[0][0] = 0 a[0][1] = 0 a[1][0] = 1 a[1][1] = 2 a[2][0] = 2 a[2][1] = 4 a[3][0] = 3 a[3][1] = 6 a[4][0] = 4