At the end, the boy in the video said that he is staying at this hostel in Bali to show people that "you don't need to have a lot of money to have a great time".
查看答案
以下能正确定义一维数组的选项是()。
A. int num(5*2);
B. int num[5*2];
C. int long[10];
D. int num(10);
以下对一维数组a进行正确初始化的语句是()。
A. int a[10]=(0,0,0,0,0);
B. int a[10]={1;3;6;8;9};
C. int a[ ]={0,1};
D. int a[10]={ };
若有定义int a[2][3];,以下选项中对数组a的数组元素正确引用的是()。
A. a[2][!1]
B. a[2][3]
C. a[0][3]
D. a[1>2][!1]
若以下说明,则数值为4的表达式是()。int a[12]={1,2,3,4,5,6,7,8,9,10};char c='a',d,g;
A. a[g-c]
B. a[4]
C. a['d'-'c']
D. a['d'-c]