strcmp(s, t)比较字符串s,t的大小

版权声明:原创请勿随意转载。 https://blog.csdn.net/yjysunshine/article/details/81710548

《C程序设计语言》P105

#include <stdio.h>
/*strcmp(s, t) 比较字符串s,t的大小,s和t进行比较,注意前后顺序*/
int strcmp(char *s, char *t);
main()
{
    char s[] = "yjy";
    char t[] = "zeautiful";
    int k = 0;
    k = strcmp(s, t);
    if(k > 0)
        printf("%s > %s\n", s, t);
    else if(k == 0)
        printf("%s = %s\n", s, t);
    else
        printf("%s < %s\n", s, t);
    return 0;
}
//比较字符串s, t的大小     数组下标版
int strcmp(char *s, char *t)
{
    int i, j;
    for(i = 0, j = 0; s[i] == t[j]; i++, j++)
    {
        if(s[i] == '\0')
            return 0;
    }
    return s[i] - t[j];
}
 

//指针版
int strcmp(char *s, char *t)
{
    while(*s == *t)
    {
        if(*s == '\0')
            return 0;
        s++;
        t++;
    }
    return *s - *t;
}
 

猜你喜欢

转载自blog.csdn.net/yjysunshine/article/details/81710548
今日推荐