若有以下定义,则对a数组元素的正确引用是_________. int a[5],*p=a; a)*&a[5] b)a+2 c)*(p+5) d)*(a+2)

2024-12-12 13:42:45
推荐回答(1个)
回答1:

a,b,c对数组a中元素引用均越界。
选d