C語言strcat()函數:鏈接字符串

頭文件:#include <string.h>


strcat() 函數用來鏈接字符串,其原型爲:
    char *strcat(char *dest, const char *src);

【參數】dest 爲目的字符串指針,src 爲源字符串指針。

strcat() 會將參數 src 字符串複製到參數 dest 所指的字符串尾部;dest 最後的結束字符 NULL 會被覆蓋掉,並在鏈接後的字符串的尾部再增長一個 NULL。

注意:dest 與 src 所指的內存空間不能重疊,且 dest 要有足夠的空間來容納要複製的字符串。

【返回值】返回dest 字符串起始地址。

【實例】鏈接字符串並輸出。

 
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main ()
  5. {
  6. char str[80];
  7. strcpy (str,"these ");
  8. strcat (str,"strings ");
  9. strcat (str,"are ");
  10. strcat (str,"concatenated.");
  11. puts (str);
  12. return 0;
  13. }
#include <stdio.h>
#include <string.h>

int main ()
{
    char str[80];
    strcpy (str,"these ");
    strcat (str,"strings ");
    strcat (str,"are ");
    strcat (str,"concatenated.");
    puts (str);
    return 0;
}
輸出結果: these strings are concatenated.
相關文章
相關標籤/搜索