溫馨提示×

C語言字符串連接函數(shù)如何使用

小億
115
2024-01-09 19:36:20
欄目: 編程語言

C語言中字符串連接函數(shù)使用的是strcat()函數(shù),函數(shù)原型如下:

char* strcat(char* destination, const char* source);

strcat()函數(shù)將源字符串追加到目標(biāo)字符串的末尾,并返回目標(biāo)字符串的指針。

使用方法如下:

  1. 首先,確保目標(biāo)字符串有足夠的空間來容納源字符串的內(nèi)容。
  2. 調(diào)用strcat()函數(shù),并將目標(biāo)字符串作為第一個參數(shù),源字符串作為第二個參數(shù)傳遞。
  3. 函數(shù)將會將源字符串的內(nèi)容追加到目標(biāo)字符串的末尾。
  4. 最后,可以通過打印目標(biāo)字符串來驗證字符串連接的結(jié)果。

以下是一個簡單的示例代碼:

#include <stdio.h>
#include <string.h>

int main() {
    char destination[20] = "Hello";
    char source[] = " World!";

    strcat(destination, source);

    printf("Concatenated string: %s\n", destination);

    return 0;
}

輸出結(jié)果為:Concatenated string: Hello World!

0