A.(*s)[3]
B.*(s+3)
C.*s[3]
D.*s+3
[单选题]设有定义:double a[10],*s=a;以下能够代表数组元素a[3]的是( )。A.($s)[3]B.}(s+3)C.*s[3]D.}s+3
[单选题]设有定义double a[10],*s=a;以下能够代表数组元素a[3]的是( )。A.(*s)[3]B.*(s+3)C.*s[3]D.*s+3
[单选题]( 28 )设有定义 double a[10] , *s=a ; ,以下能够代表数组元素 a[3] 的是A. ) ( *s ) [3]B. ) * ( s+3 )C. ) *s[3]D. ) *s+3
[单选题]( 28 )设有定义 double a[10] , *s=a ; ,以下能够代表数组元素 a[3] 的是A. ) ( *s ) [3]B. ) * ( s+3 )C. ) *s[3]D. ) *s+3
[单选题]( 28 )设有定义 double a[10] , *s=a ; ,以下能够代表数组元素 a[3] 的是A. ) ( *s ) [3]B. ) * ( s+3 )C. ) *s[3]D. ) *s+3
[主观题]设有数组定义: int MyIntArray[] = {10, 20, 30, 40, 50, 60, 70};, 则执行下列几个语句后的输出结果是______。int s = 0;for(int i = 0; i < MyIntArray,length; i++)s += MyIntArray[i];System.out.println(s);
[单选题](24)设有定义:double x[10],*p=x;,以下能给数组x下标为6的元素读入数据的正确语句是A.)scanf("%f",&x[6]);B.)scanf("%lf",*(x+6));C.)scanf("%lf",p+6);D.)scanf("%lf",p[6]);
[主观题]若有如下定义,double a[100];则a数组元素的下标上限是(8) 。
[试题]设有定义语句:int a[][3]={{0},{1},{2}};,则数组元素a[1][2]的值为____
[试题]设有定义语句: int a[][3]={{0},{1},{2}};, 则数组元素 a[1][2] 的值为 ( 13 ) 。