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
相關用法
- C語言 strcat()用法及代碼示例
- C語言 strcspn()用法及代碼示例
- C語言 strchr()用法及代碼示例
- C語言 strcmpi()用法及代碼示例
- C語言 strcoll()用法及代碼示例
- C語言 strcmp()用法及代碼示例
- C語言 strcpy()用法及代碼示例
- C語言 strtol()用法及代碼示例
- C語言 strrchr()用法及代碼示例
- C語言 strftime()用法及代碼示例
- C語言 strtok()用法及代碼示例
- C語言 strncat()用法及代碼示例
- C語言 strupr()用法及代碼示例
- C語言 strlen()用法及代碼示例
- C語言 strtod()用法及代碼示例
- C語言 strspn()用法及代碼示例
- C語言 strstr()用法及代碼示例
- C語言 strxfrm()用法及代碼示例
- C語言 strrev()用法及代碼示例
- C語言 strtok()、strtok_r()用法及代碼示例
注:本文由純淨天空篩選整理自Bhanu Priya大神的英文原創作品 What is strcat() Function in C language?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。