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

有如下程序:
#include <stdio.h>
struct S
{
int x,y;
};
main()
{
struct S data[2] = {4,3,1,9};
int i;
for(i=0; i<2; i++)
printf("%d,%d;",data[i].x,data[i].y>>1);
printf("\n");
}
程序运行后的输出结果是______。

A.4,1;1,4;
B.4,1;2,4;
C.4,3;1,9;
D.4,3;2,3;