试题详情

有以下程序 #include 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;ix); p=p->y;} } 执行后的输出结果是( )。

A20,15,

B20,14,

C28,13,

Dmain函数必须出现在固定位置