c程序填空:下面函数实现strcmp的功能,将两个字符串s和t进行比较,然后将两个字符串中第一个不相同字符
下面函数实现strcmp的功能,将两个字符串s和t进行比较,然后将两个字符串中第一个不相同字符的ASCII码值之差作为函数值返回intMyStrcmp(chars[],c...
下面函数实现strcmp的功能,将两个字符串s和t进行比较,然后将两个字符串中第一个不相同字符的ASCII码值之差作为函数值返回
int MyStrcmp(char s[], char t[])
{
int i;
for (i=0; s[i] = = t[i]; i++ )
{
if(s[i] = = ________) return 0 ;
}
return (_________);
} 展开
int MyStrcmp(char s[], char t[])
{
int i;
for (i=0; s[i] = = t[i]; i++ )
{
if(s[i] = = ________) return 0 ;
}
return (_________);
} 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询