已定义float a[5];,则数组a可引用的元素有()。A.a[1]~a[5]B.a[0]~a[5]C.a[1]~a[4]D.a[0]~a[4]
已定义float a[5];,则数组a可引用的元素有()。
A.a[1]~a[5]
B.a[0]~a[5]
C.a[1]~a[4]
D.a[0]~a[4]
参考答案和解析
a[0]~a[4]+H2:H32
相关考题:
若有以下说明和定义语句,则变量w在内存中所占的字节数是 【19】 。union aa {float x; float y; char c[6]; };struct st{ union aa v; float w[5]; double ave; } w;
若有定义int a[9],+P=a;,则P+5表示( )。A.数组元素a[5]的值B.数组元素a[5]的地址SXB 若有定义int a[9],+P=a;,则P+5表示( )。A.数组元素a[5]的值B.数组元素a[5]的地址C.数组元素a[6]的地址D.数组元素a[0]的值加上5
下面______不是创建数组的正确语句。A.float f[] f[] = new float[5][5];B.float f[][] = new float[5][5];C.float f[][] = new float[][5],D.float [][] f= new float[5][];
下列一维数组定义正确的是( )。A.x=5;int num[x];B.const iht x=5;float num[x];C.const float x=5;int num[x];D.const int x;x=5;intnum[x];
以下对一维实型数组a的正确定义的是______。A.float a(10);B.int n=10;float a[n];C.int n;float a [n]; scanf("%d",n);D.#define SIZE 10 float a[SIZE];
下面对二维数组array 的定义,正确的是( )。A.int array[][4];B.char array[3,4];C.float array (3)(4);D.float array[3][4];
若有下列定义,则对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]
以下各组选项中,均能正确定义二维实型数组a的选项是( )A.float a[3][4]; float a[][4]; float a[3][]={{1},{0}};B.float a(3,4); float a[3][4]; float a[][]={{0},{0}};C.float a[3][4] static float a[][4]={{0},{0}};D.float a[3][4]; float a[3][];
以下关于数组的描述中,正确的有()A、有定义chara[3];则定义了a[1]、a[2]、a[3]三个数组元素B、构成字符数组的各个元素必须是字符类型的数据C、若有定义chara[]="hello";,则数组a的长度为6D、设有数组定义chararray[]="China";则数组array所占的空间为5个字节
单选题定义整数一维数组inta[5]={1,2,3}则数组a的元素个数是()A3B5C4D2