填空题

下列程序的输出结果是______。
void main()

int a[]= 2,4,6 ,*ptr=&a[0],x=8,y,z;
for(y=0;y<3;y++)
z=(*(ptr+y)<x)*(ptr+y):x;
printf("%d\n",z);

【参考答案】

F