有以下程序段
Struct st

有以下程序段
Struct st
{int x;int *y;}*pt;
Int a[]={1,2},b[]={3,4};
Struct st c[2]={10,a,20,b};
Pt=c;
以下选项中表达式的值为11的是______。

A.*pt->y

B.pt->x

C.++pt->x

D.(pt++)->x

正确答案是C