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

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

时间:2018-07-06 21:33:11      阅读:3325      评论:0      收藏:0      [点我收藏+]

标签:str   stdio.h   scan   pre   字符   turn   int   style   abc   

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

函数接口定义:

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
/*函数str_cat应将字符串t复制到字符串s的末端,并且返回字符串s的首地址。*/
char *str_cat( char *s, char *t )
{
    char *p;
    p=strcat(s,t);//函数strcat的功能是把两个字符串连接成一个字符串 
    return p;
}

char string2[100]="csdn ";

char string3="wo ai ni";

char *string1=strcat(sting2,string3);

printf("s\n",string1);//将会输出csdn wo ai ni

printf("s\n",string2);//将会输出csdn wo ai ni

printf("s\n",string3);//将会输出wo ai ni

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

标签:str   stdio.h   scan   pre   字符   turn   int   style   abc   

原文地址:https://www.cnblogs.com/2228212230qq/p/9275456.html

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