C语言 stringcpy,stringcat,stringcmp实现

      复习复习C语言,O(∩_∩)O~

#include<stdio.h>
#include<conio.h>

//实现从源字符串string到目的字符串str的复制函数
char* stringCpy(char* str,const char* string)
{
    char* s=str;
    while(*string)
    {
        *s++=*string++;
    }
    *s='\0';
    //返回目的字符串的首地址
    return str;
}

//函数将字符串string链接到字符串str的尾部
char* stringCat(char* str,const char* string)
{
    char* s=str;
    //找到字符串str的尾部
    while(*s)
    {
        s++;
    }
    while(*string)
    {
        *s++=*string++;
    }
    *s='\0';
    //返回目的字符串的首地址
    return str;
}

//比较大小的函数
//实现两个字符串str和string的比较
//如果str小于string返回负值,如果str大于string返回正直,如果str等于string返回0
int stringCmp(const char* str,const char* string)
{
    while((*str)&&(*string)&&(*str==*string))
    {
        str++;
        string++;
    }
    return (int)(*str-*string);
}

int main()
{
    char s1[20];
    const char* s2="abc";
    const char* s3="def";
    char* pc;
    int cmp;
    puts("**************************************");
    puts("|   The program will complish:       |");
    puts("|   strcpy,strcat,strcmp             |");
    puts("**************************************");
    printf("The string s2 is:%s\n",s2);
    printf("The string s3 is:%s\n",s3);
    pc=stringCpy(s1,s2);
    printf("This is stringcpy s2 to s1,s1 is :\n");
    puts(pc);
    pc=stringCat(s1,s3);
    printf("This is stringcat s1 to s3,s1 is :\n");
    puts(pc);
    cmp=stringCmp(s2,s3);
    if(cmp==0)
        printf("\nThe string s2 is equal to s3\n");
    else if(cmp<0)
        printf("\nThe string s2 is smaller to s3\n");
    else
        printf("\nThe string s2 is larger to s3\n");
    getch();//从控制台读取一个字符,但不显示在屏幕上,实现在该位置暂停一下,按任意键继续
    return 0;

}

 

 

 

 

转载于:https://www.cnblogs.com/kingshow123/p/stringoperation.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值