若有定义:int a[2][3];则对a数组的第i行第j列元素地址的正确引用是( )。
2021/9/28
A.*(a[i]+j)
B.(a+i)
C.*(a+j)
D.a[i]+j
相关试题
设有如下程序段char s[20]=" Beijing", *p; p=s;则执行 p=s;语句后,以下叙述正确的是( )。以下程序段的运行结果是( )。i=0;do{printf("%d,",i);}while(i++);printf("%d\n",i);已知对学生记录的描述为:struct teacher{int sex;char name[20];int age;struct{int year,month,day;}birthday;};struct teacher li;设变量li中的“生日”是“1980年3月3日”,对“birthday”正确赋值的程序是( )。有以下程序#includemain( ){int a[]={1,2,3,4},y,*p=&a[3];--p;y=*p;printf("y=%d\n",y);}程序的运行结果是( )。以下正确的字符串常量是( )。