若有定义:int a[5],*p=a;则对a数组元素的正确引用是:
A、*&a[5] ;
B、a+2;
C、*(p+5);
D、*(a+2);