单选题 下面函数的功能是( )。 sss(s,t) char*s,*t; { while((*s)&&(*t)&&(*t++==*s++)); return(*s-*t);}
【正确答案】 B
【答案解析】解析:“*s-*t”的输出实际是比较两个字符的ASCII码值,比较两个字符串的大小。