rt
int main() { int len; char ch[35]; scanf("%s",ch+1); len=strlen(ch+1); printf("%d",len); //A处 }
输入
abcde
1.请问len的值为几? 2.如果我想输出ch,该怎么写?