strcpy(str1,str2,6)
时间: 2024-06-14 22:04:52 浏览: 73
strcpy函数
`strcpy(str1, str2, 6)`是一个错误的函数调用,因为`strcpy`函数只接受两个参数,分别是目标字符串和源字符串。它的作用是将源字符串的内容复制到目标字符串中,直到遇到空字符`\0`为止。
以下是一个正确的`strcpy`函数的示例:
```c++
#include <iostream>
#include <cstring>
int main() {
char str1[20];
char str2[20] = "Hello, World!";
strcpy(str1, str2);
std::cout << "str1: " << str1 << std::endl;
std::cout << "str2: " << str2 << std::endl;
return 0;
}
```
输出:
```
str1: Hello, World!
str2: Hello, World!
```
阅读全文