电子科技大学 / C语言
正确率:100%
以下对一维整型数组a的正确说明是()。
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];
参考答案: