2、在定义int a[10];之后,对a的引用正确的是()A.a[9]B.a[6.3]C.a(6)D.a[10]
2、在定义int a[10];之后,对a的引用正确的是()
A.a[9]
B.a[6.3]
C.a(6)
D.a[10]
参考答案和解析
a[10-10]
相关考题:
若有以下结构体,则正确的定义或引用的是struct Test{int x;int y;} vl;A.Test.x=10;B.Test v2;v2.x=10;C.struct v2;v2.x=10;D.struct Test v2={10};
若有以下定义语句:int a[10]={1,2,3,4,5,6,7,8,9,10}; 则下列哪个是对该数组元素的正确引用( )A. a[10]B. a[a[3]-5]C. a[a[9]]D. a[a[4]+4]
若有以下结构体定义,则______是正确的引用或定义。 struct example { int x; int y; }v1;A.example.x=10B.example v2.x=10C.struct v2;v2.x=10D.struct example v2={10};
若有以下结构体定义,则是正确的引用或定义。struct example{ int x; int y;}v1;A.example.x=10B.examplev2.x=10C.struct v2;v2.x=10D.struct example v2={10};
若有以下结构体定义,则______是正确的引用或定义。 struct example { int x; int y; }v1;A.example.x=10B.example v2.x=10C.example.x=10D.struct example v2={10};
若有以下结构体,则正确的定义或引用是( )。 struct Test { int x; int y; }v1;A.Test.x=10;B.Test v2;v2.x=10;C.struct Test v2;v2.x=10;D.struct Test.v2=10;
若有以下说明和定义: fun(int *c) {……} main() { int(*a) ()=fun,*b(),w[10],c; ┇ } 在必要的赋值之后,对fun函数的正确调用语句是( )A.a=a(w);B.(*a) (c) ;C.b=*b(w);D.fun(b);
若有下列定义,则对a数组元素地址的正确引用是( )。int a[5],*p=a;A.p+5 B.*a+1 若有下列定义,则对a数组元素地址的正确引用是( )。int a[5],*p=a;A.p+5B.*a+1C.&a+1D.&a[0]
单选题在Java语言中如下定义:int[]a=new int[10];则对a数组元素的正确引用是()。Aa[10]Ba[3+1]Ca(5)Da[0]