码迷,mamicode.com
首页 > 其他好文 > 详细

自定义strcmp函数

时间:2020-03-06 23:38:54      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:str   include   col   bsp   nbsp   输出   tin   字符串   image   

//比较字符串,输出首个不同字符的差值
# include<stdio.h>
char c[50]={0};
char b[50]={0};
int strcmp1(char *a,char *b);
int main()
{
    gets(c);
    gets(b);
    printf("%d\n",strcmp1(c,b));
    return 0;
}

int strcmp1(char *a,char *b)
{
    int i=0,l;
    while(a[i]!=0)
    {
        i++;
    }
    l=i;
    i=0;
    while(i<=l)
    {
        if(a[i]==b[i]) 
        {
            i++;
            continue;
        }
        else
        {
            return a[i]-b[i];
        }
    }
    return 0;//a[last]=0,和b[last]相等,说明b[last]也是0,b也结束了    
}

运行结果:

技术图片

 

自定义strcmp函数

标签:str   include   col   bsp   nbsp   输出   tin   字符串   image   

原文地址:https://www.cnblogs.com/bboykaku/p/12431620.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!