有以下函数
Int aaa(char *s)

有以下函数
Int aaa(char *s)
{ char *t=s;
While(*t++);
T-- ;
Return(t-s);
}
以下关于aaa函数的功能叙述正确的是______。

A.求字符串s的长度

B.比较两个串的大小

C.将串s复制到串t

D.求字符串s所占字节数

正确答案是A