Code:
main( )
{
int a[2][3][2] = {{{2,4},{7,8},{3,4}},{{2,2},{2,3},{3,4}}};
printf("%u %u %u %d \n",a,*a,**a,***a);
printf("%u %u %u %d \n",a+1,*a+1,**a+1,***a+1);
}
If the location of an array start from 100.
can you please explain all this by giving the demonstration of how the location is saved from one to other & how the location & the value is access please explain in detail.
Thank you
Comment