void main()
{
unsigned int x[2][3]={{1,2,3},{4,5,6}};
printf("%u%u%u%u", x,x+1,*(*(x+1)),*(*(x+1)+2);
}
If the base address of array 'x' is 65514, and integer occupied only 2 bytes then output of the above program is

Posted on by