here is code
#include<stdio.h>
int main(){
int a[5] = {4,6,8,9,4};
printf("%d",*(&a));
return 0;
}
'*' operator is use for getting value at address '&' operator is use for getting address of any variable then value at(value of a) should print the value of first element of 'a' but it is printing value of first element of 'a'. can you explain me why