• 2022-06-12
    有以下程序 #include struct tt {int x;struct tt *y;} s[3]={1,0,2,0,3,0}; main() { struct tt *p=s+1; p->y=s; printf("%d,",p->x); p=p->y; printf("%d\n",p->x); } 程序运行后的输出结果是______。
    A: 2,3
    B: 1,2
    C: 3,1
    D: 2,1