题目内容

设有定义:“double a[10],*s=a;”,以下能够代表数组元素a[3]的是 (2019考题)

A. (*s)[3]
B. *(s+3)
C. *s[3]
D. *s+3

查看答案
更多问题

已有声明“char *s1="China", s2[10],*s3="Nanjing", *s4;”以下字符串赋值语句在执行时不可能出现错误的是 (2019考题)

A. strcpy(s3,s1);
B. strcpy(s4,s1);
C. strcpy(s2,s1);
D. strcpy(s1,s3);

已有声明“int a[3][3]={1,2,3,4,5},*p1=a[1],(*p2)[3]=a;”,以下选项中不能输出5的语句是 (2019考题)

A. cout< B. cout< C. cout< D. cout<<*(p1+4);

分析程序的执行过程,给出最后的输出结果void f(int a, int *b){ a++; b++; (*b)++; }int main(){ int x[2]={4,4};f(x[0], &x[0]);cout<

分析程序的执行过程,给出最后的输出结果int main(){ char *s, *s1="Here";s=s1;while(*s1) s1++;cout<<(s1-s)<

答案查题题库