下面程序输出数组中的最大值,由s指针指向该元素. main() { int a[10]={6,7,2,9,1,10,5,8,4,3,},*p,*s; flr(p=a, s=a; p-a
A.p>s
B.*p>*s
C.a[p]>a[s]
D.p-a>p-
E.B
F.1
正确答案是B