单选题 有以下字符串,说明表达式strlen(s)值的是( )。 char s[10]={'a','\n','a','b'、'\ t','c'};
【正确答案】 C
【答案解析】解析:strlen(s)返回s字符串中字符的个数,若s是一个数组,则返回数组元素的个数。