int a[10];
why does
printf("%p",a); and printf("%p",&a) ;
print the same result.
also printf("%p",&(a )); //this works fine
but printf("%p",.&( a+2));//results into error.
why does
printf("%p",a); and printf("%p",&a) ;
print the same result.
also printf("%p",&(a )); //this works fine
but printf("%p",.&( a+2));//results into error.
Comment