#include<studio.h> void main() { char s[10]={'a','b','c'}; printf("\n%d",strlen(s+2)); } A.值不确定 B. 10 C. 3 D. 1
正确答案是D,请问为什么?