strcat函数用法

`strcat` 是 C 语言中的一个字符串处理函数,用于连接两个字符串。函数原型如下:```cchar *strcat(char *dest, const char *src);