有如下程序:
#include<stdio.h>
struct S
{
int a,b;
}
data[2]={10,100,20,200};
main()
struct S p=data[1];
printf("%d\n",++(p.a));
程序运行后的输出成果是( )
10
11
20
21