注意:此页面搜索的是所有试题
题目内容
(安阳师范学院-计算机基础与程序设计)
以下程序运行后,输出结果是( )。
main( )
{
int a[10]={19,23,44,17,37,28,49,36},*p;
p=a;
printf("%d\n",(p+=3)[3]);
}
A.44
B.17
C.49
D.运行时出错,无定值
main( )
{
int a[10]={19,23,44,17,37,28,49,36},*p;
p=a;
printf("%d\n",(p+=3)[3]);
}
A.44
B.17
C.49
D.运行时出错,无定值
参考答案