I can remember the__( )__ moment when my parents learned that I was admitted by the university.
A. exact
B. precise
C. accurate
D. actual
查看答案
Among all the social problems, unemployment was the main ____ of the public.A. careB. content C. concern D. consciousness
下面定义一维数组的语句正确吗: #define N 10 int a[N];
A. 正确
B. 不正确
一维数组定义的格式为:类型标识符 数组名[整型常量表达式];,例如:int a[5]; ,其中“整型常量表达式”代表的是:
A. 数组的长度
B. 数组的下标
下面定义一维数组的语句正确吗: int n=10; int a[n];
A. 正确
B. 不正确