有以下程序main(){ int a[]={2,4,6,8,10},y=0,x,*p; p=&a[1]; for(x=1;x<3;x++) y+=p[x]; printf("%d\n",a[2]);}程序输出的结果是?
不会运行?