#include <cstring> char *strncat( char *str1, const char *str2, size_t count );
strncat() 函式最多將 str2 的 count 個字元連線到 str1 上,並在末尾新增一個空字元。 返回結果字串。