文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C程序习题-用程序实现strcat函数[7.13]

C程序习题-用程序实现strcat函数[7.13]

时间:2010-08-04  来源:chengxiaopeng

    编写一程序,将两个字符串连接起来,不要用strcat函数。
    我们可以回忆一下如何才能将两个字符串连接起来。肯定是我们要先找到第一个字符串的末尾即'\0'处,然后将第二个字符串的每一个字符都copy到第一个字符串中。但是在c语言中字符串都是以'\0'作为结束,因此,我们还需要手动的赋值最后一个字符串为'\0'.即可实现函数strcat的功能。根据上面的思路,编写代码如下:

#include <stdio.h>
#define N 100

int main(int argc, int *argv[])
{
    char str1[N];
    char str2[N];
    char c;
    int i = 0,j = 0;
    printf("please input s1 string:");
    gets(str1);
    printf("please input s2 string:");
    gets(str2);
    printf("strcat result:");

    for (i = 0; str1[i] != '\0'; i++)
    {
        ;
    }
    for (j = 0; (c = str2[j]) != '\0'; j++)
    {
        str1[i++] = c;
    }
    str1[i] = '\0';
    
    puts(str1);
    system("pause");
    return 0;
}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载