0 of 3 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 3 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
1、若有以下定义,则对a数组元素的引用值为5的正确写法是____?
int a[5]={1,2,3,4,5};
int *p=a;
2、若有以下定义,则p+5表示_______?.
int a[10],*p=a;
3、根据如下代码做出判断:
int a=1,b=2,c;
int *p1, *p2;
p1=&a, p2=&b;
则以下不能正确执行的赋值语句是________