A-A+ 函数mycmp(char *s char *t)的功能是比较字符串s和t的大小 当s等于t时返回0 当s&gt;t时返回正值 2020-10-12 15:37:50 IT认证 阅读 问题详情 函数mycmp(char *s,char *t)的功能是比较字符串s和t的大小,当s等于t时返回0,当s>t时返回正值,当s<t时返回负值,请填空。mycmp(char *s,char *t){ while (*s==*t) { if (*s==’’)return 0; ++s;++t; } return();} 参考答案 查看解答