若定义char s[2][3]={“ab”, “cd”}, *p=(char *)s;那么下列表达式语法正确,并且其值与 s[1][1]相等的表达式(并非一定与其等价)是A. *(s+3)B. p[1][1]C. *(p+3)D. *++P+2
收起
B其他的都是 s[1][0]
报告相同问题?