int matrix[3][3]=
{
{11,12,13},
{21,22,23},
{31,32,33}
};
int main()
{
printf("Element [1,2] is %d \n" , matrix[1,2]);
return 0;
}
It prints a address of element matrix[0,2].
When i printed the address of matrix[1,0] and matrix[1,1] ... they print the address of matrix[0,0] and matrix[0,1] respectively .. It is the same case with 3rd row as well.
My question why the element of 2nd and 3rd row are showing the addresses of respective elements of row 1 ?