赞题库-背景图
单项选择题

以下程序的输出是______。 #include <stdio.h> main() { struct s1 {int x; int y;}; struct s1 a={1,3}; struct s1 *b=&a; b->x=10; printf("% d% d\n", a.x, a.y); }

A.13
B.103
C.310
D.31