c语言strcpy函数用法

`strcpy()` 是 C 语言中的一个标准库函数,用于复制字符串。其函数原型如下:```cchar *strcpy(char *dest, const char *src);```