以下C语言程序的输出结果是( )。
struct s{ int x,y;} data [2]={10, 100,20, 200};main (){
struct s *p=data; p++; printf ("%d\n", ++ (p->x)) ;}