以下C语言程序的输出结果是()structs{intx,y;}data[2]={10,100,20,200};main(){structs*p=data;p++;printf(“%d\n”,++(p->x));}
A.10
B.11
C.20
D.21
正确答案是D