What is the difference between a,&a,Address of first element a[0] ? Similarly p is a pointer to an integer but assigned as array address . Does that pointer[] would do pointer arithmetic and fetch the value as per the datatype ? Further what value does * expect ? Should it be a pointer ?
#include<stdio.h>
int main()
{
int a[]={5,6,7,8};
int *p= a;
printf("\nThis is the address of a %u, value of &a %u ,Address of first element %u , Value pointed by a %u",a,&a,&a[0],*a);
printf("\nThis is the address at p %u , value at p %u and the value pointed by p %d",&p,p,*p);
printf("\n");
}
This is the address of a 3219815716, value of &a 3219815716 ,Address of first element 3219815716 , Value pointed by a 5
This is the address at p 3219815712 , value at p 3219815716 and the value pointed by p 5