文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C程序习题-编写将两个字符串连接的函数[8.6]

C程序习题-编写将两个字符串连接的函数[8.6]

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

    写一函数,将两个字符串连接。     我们知道在string.h文件中提供了strcat函数,实现将第二个参数的字符连接到第一个参数的字符串后面,我们采用的方法是将在第一个参数的'\0'处将第二个参数复制到第一个参数中。根据此原理中,编写代码如下:  

#include <stdio.h>
#define N 100

void strcat(char[], char[]);
int main(int argc, char *argv[])
{
    char ch1[N],ch2[N];
    printf("please input ch1 :");
    gets(ch1);
    
    printf("please input ch2 :");
    gets(ch2);
    
    printf("begin mystrcat function:\n");
    strcat(ch1,ch2);
    puts(ch1);
    system("pause");
    return 0;
    
}

void strcat(char s[], char t[])
{
    int i = 0,j = 0;
     for (i = 0; i < strlen(s); i++)
     {
         ;
     }
     
     for (j = 0; j <= strlen(t); j++)
     {
         
         s[i++] = t[j];
     }
}


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

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载