当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 strcat()用法及代码示例


C库函数char *strcat(char *dest, const char *src)附加指向的字符串src到指向的字符串的末尾dest

字符数组称为字符串。

声明

以下是数组的声明 -

char stringname [size];

例如 - char string[50];长度为 50 个字符的字符串

初始化

  • 使用单字符常量 -
char string[10] = { ‘H’, ‘e’, ‘l’, ‘l’, ‘o’ ,‘\0’}
  • 使用字符串常量 -
char string[10] = "Hello":;

Accessing− 有一个控制字符串 "%s" 用于访问字符串,直到遇到“\0”。

strcat() 函数

  • 这用于组合或连接两个字符串。

  • 目标字符串的长度必须大于源字符串。

  • 结果连接的字符串是源字符串。

用法

语法如下 -

strcat (Destination String, Source string);

示例程序

下面的程序显示了 strcat() 函数的用法。

#include <string.h>
main(){
   char a[50] = "Hello \n";
   char b[20] = "Good Morning \n";
   strcat (a,b);
   printf("concatenated string = %s", a);
}

输出

执行上述程序时,会产生以下结果 -

Concatenated string = Hello Good Morning

示例

让我们看另一个例子。

以下是使用 strcat 库函数将源字符串连接到目标字符串的 C 程序 -

#include<stdio.h>
#include<string.h>
void main(){
   //Declaring source and destination strings//
   char source[45],destination[50];
   //Reading source string and destination string from user//
   printf("Enter the source string:\n");
   gets(source);
   printf("Enter the destination string:\n");
   gets(destination);
   //Concatenate all the above results//
   strcat(source,destination);
   //Printing destination string//
   printf("The modified destination string:");
   puts(source);
}

输出

执行上述程序时,会产生以下结果 -

Enter the source string:Tutorials Point
Enter the destination string:C programming
The modified destination string:Tutorials Point C programming

相关用法


注:本文由纯净天空筛选整理自Bhanu Priya大神的英文原创作品 What is strcat() Function in C language?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。