帮我解决一下
编写函数scomp(char *s1,char *s2),将两个字符串S1和S2进行比较,若串S1>S2,函数反回值为正;若串S1=串S2,函数值反为0;若串S1<S2函数返回值为负数.妈相当于库函数strcmp的功能.#include<stdio.h>
scomp(char *s1,char *s2)
{int i;
i=0;
while(s1[i]==s2[i] && s1[i]) i++;
return(s1[i]-s2[i]);
}
main()
{ char str[]="ABC",str[10];
gets(str2);
if(scomp(str1,str2) > 0) printf("str1>str2\n");
else if(scomp(str1,str2) < 0) printf("str1<str2\n");
else printf("str1=str2\n");
}
这个程序我看着不是很懂,有谁能给我逐步解释一下吗?
非常感谢!!