设有定义语句如下:int m=10;const int n=10;const double k=10;则下列数组的定义中正确的是( )。
A: int a[m];
B: float b[n+5];
C: double c[k] ;
D: float d[ ] ;
A: int a[m];
B: float b[n+5];
C: double c[k] ;
D: float d[ ] ;
举一反三
- 下列关于一维数组的定义语句中,正确的是( )。 A: int n=10;int a[n]; B: int b[ ]; C: const int m=5;float c[m]; D: const float k=5;int d[k];
- 下列数组的定义中错误的是( )。 A: int m=10;int a[m]; B: const int n=10;float b[n]; C: double c[‘m’] ; D: float d[3+6] ;
- 下列一维数组的定义中正确的是( )。 A: int n=10;int a[n]; B: const float n=10;float b[n]; C: char c[127/2]; D: double d[ ];
- 以下对一维数组a的定义正确的是 ( )。 A: int a(10); B: int a[]; C: int k=5; double a[k]; D: int a[10];
- 以下数组定义中不正确的是: A: int student[10*3]; B: define N 20char prices[N]; C: double score[3][4]; D: int k=8;float distance[k];