Each element in C array must be of the same data type.
查看答案
C array does not need to be defined before use.
The correct description of one-dimensional integer array a is ( ).
A. int a(10);
B. int n=10,a[n];
C. int n; scanf(“%d”,&n); int a[n];
D. #define SIZE 10 int a[SIZE]
When an array name is used as a function actual parameter, the value of the first element of the array is passed.
The array name represents the address of the first element of the array.