C 速查手冊

11.3.4 strncat()

string.h函數 (function) strncat() ,需要兩個字串 (string) 及一個整數 n 當作參數 (parameter) ,然後把第二個參數字串的 n 個字元 (character) 接到第一個參數的字串後面,回傳第一個參數。

以下程式依序先將字串 s2 接到 s1 之後,再將 s3 接到 s1 之後

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

int main(void)
{
    char s1[30] = "practice ";
    char s2[30] = "makes ";
    char s3[30] = "perfect";
    
    strncat(s1, s2, 10);
    strncat(s1, s3, 10);
    
    printf("%s\n", s1);
    
    return 0;    
}

/* 《程式語言教學誌》的範例程式
    http://kaiching.org/
    檔名:cstrncat.c
    功能:示範 string.h 中函數 strncat() 的使用
    作者:張凱慶 */

編譯後執行,結果如下

$ gcc cstrncat.c
$ a.out
practice makes perfect
$

上一頁 11.3.3 strcat()
回 C 速查手冊 - 標準程式庫分類索引
下一頁 11.3.5 strcmp()
回 C 速查手冊 - 標準程式庫導覽
回 C 速查手冊首頁
回 C 教材首頁
回程式語言教材首頁