123456
const int size=5; int arr[size]={1,2,3,4}; int *p=arr; int *q=&arr[0];//correct int *q=arr[0];//wrong why pointing to a particular value you need adress more //particualarly