设有定义:“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);
分析程序的执行过程,给出最后的输出结果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)<