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