• 2021-04-14
    智慧职教: 下面函数fun的功能是(  )。 int fun(char *s,char *t) { while(*s==*t)  if(*s=’\\0’)  return 0;  else  s++,t++; return *s-*t; }