填空题

函数mystrlen(char *s)的功能是求字符串s的长度,请填空。
mystrlen(char *s)
char *t:
t=s;
while(______)t++;
return(t-s);

【参考答案】

*t
热门 试题

填空题
(2)