若有以下定义,则对a数组元素的正确引用是_________.

int a[5],*p=a;


A *&a[5] 
B a+2
C *(p+5)
D *(a+2)

(分值:1.00分)