main() {int a[]={2,4,6,8,10},y=0,x,*p; p=&a[1]; for(x=1;x

来源:学生作业学帮网 编辑:学帮网 时间:2024/06/09 13:30:33

main() {int a[]={2,4,6,8,10},y=0,x,*p; p=&a[1]; for(x=1;x

输出14
p=&a[1];相当于p[0] = a[1] = 4;
for(x=1;x