#include <cstring> char *strncat( char *str1, const char *str2, size_t count );
strncat() 函数最多将 str2 的 count 个字符连接到 str1 上,并在末尾添加一个空字符。 返回结果字符串。