Output of the printf(a,*a,**a) where a is of type int [][][]
#include<stdio.h>
int main()
{
int a[3][3][3];
printf("%d %d %d %d",a,*a,**a,&a);
}
I tried the above code and got the same value for a, *a , **a and &a.
Can anyone please tell me the reason behind such a behavior?
|