C语言 <string.h> strcat 函数

  • 描述

    C库函数char *strcat(char *dest, const char *src)将src指向的字符串追加到dest指向的字符串的末尾。
  • 声明

    以下是strcat函数的声明。
    
    char *strcat(char *dest, const char *src)
    
    参数
    • dest-这是指向目标数组的指针,该数组应包含一个C字符串,并且应足够大以包含串联的结果字符串。
    • src-这是要附加的字符串。这不应与目的地重叠。
  • 返回值

    此函数返回指向结果字符串dest的指针。
    示例
    以下示例显示strcat函数的用法-
    
    #include <stdio.h>
    #include <string.h>
    
    int main () {
       char src[50], dest[50];
    
       strcpy(src,  "This is source");
       strcpy(dest, "This is destination");
    
       strcat(dest, src);
    
       printf("Final destination string : |%s|", dest);
       
       return(0);
    }
    
    尝试一下
    让我们编译并运行上面的程序,它将产生以下结果。
    
    Final destination string : |This is destinationThis is source|