C 語言標準函數庫分類導覽 - string.h strcat()

string.h 的函數 strcat() ,需要兩個字串當作參數,然後把第二個參數字串的接到第一個參數的字串後面,然後回傳第一個參數。



以下程式將字串 t 接到字串 s 之後
#include <stdio.h>
#include <string.h>

int main(void)
{
    char s[30] = "to harp on ";
    char t[30] = "the same string";
    
    strcat(s, t);
    
    printf("%s\n", s);
    
    return 0;    
}

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:cstrcat.c
    功能:示範 string.h 中函數 strcat() 的使用
    作者:張凱慶
    時間:西元2010年6月 */


編譯後執行,結果如下



您可以繼續參考


沒有留言: