A.8
B.9
C.7
D.6
[单选题]设有整形数组的定义int a[]=new int[8],则a.length的值为( )。A.8B.9C.7D.6
[单选题]设有整形数组的定义int a[]==new int[8],则a.length的值为( )。A.8B.9C.7D.6
[单选题]设有整型数组的定义:inta[ ];new int[8];,则a.length的值为下列哪项?A.8B.9C.7D.6
[单选题]设有数组的定义:int m[]=new int[5],则m.length的值为( )。A.4B.5C.6D.10
[单选题]若数组a定义为int[][]a=newint[3][4],则a是( )。A.一维数组B.二维数组C.三维数组D.四维数组
[单选题]若数组a定义为int[][]a=newint[3][4],则a是A.一维数组B.二维数组C.三维数组D.四维数组
[单选题]若二维数组a[][]的定义语句为“inta[3][4]={{3,4},{2,8,6}};”,则元素a[2][1]的值为( )。A.0B.4C.8D.6
[主观题]设有以下定义和语句,则*(*(p+2)+1)的值为(14)。int a[3][2]={10, 20, 30, 40, 50, 60}, (*p)[2];p=a;
[单选题]定义由n个指向整形数据的指针组成的数组p,其正确的方式为( )。A. int p;B. int (*p)[n];C. int *p[n];D. int (*p)( );
[单选题]设有数组定义:chararray[]=“abcd”;则数组array所占的空间为()。A.6个字节B.5个字节C.8个字节D.7个字节