其他分享
首页 > 其他分享> > 习题11-4 字符串的连接 (15分)

习题11-4 字符串的连接 (15分)

作者:互联网

本题要求实现一个函数,将两个字符串连接起来。

函数接口定义:

char *str_cat( char *s, char *t );

 

函数str_cat应将字符串t复制到字符串s的末端,并且返回字符串s的首地址。

裁判测试程序样例:

#include <stdio.h>
#include <string.h>

#define MAXS 10

char *str_cat( char *s, char *t );

int main()
{
    char *p;
    char str1[MAXS+MAXS] = {'\0'}, str2[MAXS] = {'\0'};

    scanf("%s%s", str1, str2);
    p = str_cat(str1, str2);
    printf("%s\n%s\n", p, str1);

    return 0;
}

/* 你的代码将被嵌在这里 */

 

输入样例:

abc
def

 

输出样例:

abcdef
abcdef

解答:

char *str_cat( char *s, char *t ){
	int i;
	int lens = strlen(s),lent = strlen(t);
    for(i = 0;i<lent;i++){
        s[i+lens] = t[i];
    }
    return s;
}

 

标签:11,15,MAXS,str1,cat,char,str,字符串,习题
来源: https://blog.csdn.net/qq_30377869/article/details/104708915