當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。