#include<string.h> #include<stdio.h> void main() { char p[]={′a′, ′b′, ′c′},q[10]={ ′a′, ′b′, ′c′}; printf("%d%d",strlen(p),strlen(q)); } 以下叙述中正确的是( )。 A、在给p和q数组置初值时,系统会自动添加字符串结束符,故输出的长度都为3 ...