int arr[3][2]={{1,2},{3,4},{5,6}};
printf("%d %d %d",arr[0][3],arr[1][2],arr[2][0]);
can anyone explain how can we access elements in array using notations used in printf
int arr[3][2]={{1,2},{3,4},{5,6}};
printf("%d %d %d",arr[0][3],arr[1][2],arr[2][0]);
can anyone explain how can we access elements in array using notations used in printf