TWO DIMENSIONAL ARRAYS

In c a two dimension array in consisted as an array inside array its allows to stored and many plate data in tebular  format with rows and column .

#include<stdio.h>

int main()

{

  int arr[3][4];

  int row, col;

  for(row=0; row<3; row++){

  for(col=0; col<4; col++){

  arr[row][col]=row*4+col;

  printf(“%d”, arr[row][col]);

}

}

  return 0;

}