有以下函数
int aaa(char *s)
{ char *t=s;
while(*t++);
t--;
return(t-s);
}
以下关于 aaa 函数的功能叙述正确的是
A) 求字符串s 的长度
B) 比较两个串的大小
C) 将串s 复制到串t
D) 求字符串s 所占字节数