我正在编写一个程序来模拟strcmp((。这是我的代码。
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#define MAX 100
int strcmp(const char *str1, const char *str2);
char s1[MAX], s2[MAX];
int main()
{
printf("Compare two user entered strings character by character.n");
printf("Enter string one: ");
fgets(s1, MAX, stdin);
printf("Enter string two: ");
fgets(s2, MAX, stdin);
printf("The user entered string one is: %s", s1);
printf("The user entered string two is: %s", s2);
printf("The value returned by strcmp() is: %d", strcmp(s1, s2));
return 0;
}
int strcmp(const char *str1, const char *str2){
int result;
while(*str1 != ' ' && *str1 - *str2 == 0){
str1++;
str2++;
}
if(*str1 - *str2 != ' '){
printf("%dn", *str1);
printf("%dn", *str2);
result = *str1 - *str2;
}else if(*str1 == ' ' && *str2 == ' '){
result = 0;
}
return result;
}
它在大多数情况下工作正常,strcmp(( 函数返回正确的结果,除了当一个字符串终止而另一个字符串剩余字符时。我使用 while 循环来比较字符并将指针递增到下一个字符。当字符串递增到"\0"时,执行 printf 时显示的整数值为 10。为什么不是 0?由于该值为 10,因此从中减去其他字符串的字符会得到一个大于 10 的结果。
为什么会这样?
如果目标字符数组中有足够的空间,则函数fgets
可以将新行字符'n'
- 十进制10
(对应于键 Enter(附加到输入的字符串。
您应该将其删除。例如
#include <string.h>
//...
fgets(s1, MAX, stdin);
s1[ strcspn( s1, "n" ) ] = ' ';
printf("Enter string two: ");
fgets(s2, MAX, stdin);
s2[ strcspn( s2, "n" ) ] = ' ';