早教吧 育儿知识 作业答案 考试题库 百科 知识分享

110、执行以下程序段后,y的值为A。怎么算的?????staticinta[]={1,3,5,7,9};inty,x,*ptr;y=1;ptr=&a[1];for(x=0;x<3;x++)y*=*(ptr+x);A.105B.15C.945D.无定值

题目详情
110、执行以下程序段后,y的值为 A 。 怎么算的?????
static int a[ ] = { 1, 3, 5, 7, 9 };
int y, x, *ptr;
y = 1;
ptr = &a[ 1 ];
for ( x = 0; x < 3; x ++ ) y *= *( ptr + x );
A. 105 B.15
C. 945 D.无定值
▼优质解答
答案和解析
3*5*7=105