题目是这样的:
请说出下面函数的功能。
sss(s,t)
char *s,*t;
{while((*s)&&(*t)&&(*t==*s))
{t++;
s++;}
return(*s-*t);}
大哥帮帮小弟吧,
return(*s-*t);
这个是返回两个字符串的ascll值?
什么 return 能返回两个字符串的ascll值?别说两个字符串你同时返回两个字符ascll值给我看看。
放回俩个字符整型的差值??