有以下程序 #include <stdio.h> struct tt {int x;struct tt *y;} *p; struct tt a[4]={20,a+1,15,a+2,30,a+3,17,a}; void main() { int i; p=a; for(i=1;i<=2;i++) {printf("%d,",p->x); p=p->y;} } 执行后的输出结果是( )。
A.20,15, B.20,14, C.28,13, D.15,20,正确答案A
x); p=p->y;} } 执行后的输出结果是( )。">
有以下程序 #include <stdio.h> struct tt {int x;struct tt *y;} *p; struct tt a[4]={20,a+1,15,a+2,30,a+3,17,a}; void main() { int i; p=a; for(i=1;i<=2;i++) {printf("%d,",p->x); p=p->y;} } 执行后的输出结果是( )。
A.20,15, B.20,14, C.28,13, D.15,20,正确答案A