单选题 以下能正确定义一维数组的选项是( )。
A.int num[]; B.int num[0...100];
C.#define N 100;
int num[N];
D.int N=100;
int num[N];

【正确答案】 C
【答案解析】