单项选择题

以下程序段执行后的输出结果是( )。 struct st {int n; float x; }*p; struct st a[3]={{11,5.6},{12,7.1},{13,6.7}}; p=a; printf("%d", (++p)->n);

A、10
B、11
C、12
D、14