double a[10],*s=a;
以下能够代表数组元素a[3]的是( )。
A.($s)[3]
C.*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
[单选题]设有定义DouBlea[10],*s=a;,以下能够代表数组元索a[3]的是A.(*s)[3]B.*(s+3)C.*s[3]D.*s+3
[单选题]设有定义double x[10],*p=x;,以下能给数组x下标为6的元素读入数据的正确语句是( )。A.scanf(″%f″,&x[6]);B.s
[单选题]设有定义:double x[lO],*p=x;,以下能给数组x下标为6的元素读人数据的正确语句是A.scanf(“%f”,&x[6]);B.scanf(“%If”,*(x+6));C.scanf(“%lf”,p+6);D.scanf(“%lf”,p[6]);
[单选题]语句Dim s(1 to 5)as Double定义的数组是()类型的元素。A . 整型B . 日期型C . 逻辑型D . 双精度实型
[单选题](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[3][5];那么数组a的最后一个元素是[ ]。