c++strcpy用法
时间: 2023-11-21 14:58:34 浏览: 78
C++中strcpy函数的实现
下面是c++中strcpy函数的用法和示例程序:
1. 头文件:`<cstring>`
2. 函数原型:`char* strcpy(char* dest, const char* src);`
3. 函数功能:将源字符串复制到目标字符串中,包括空字符'\0',并返回目标字符串的指针。
4. 示例程序:
```c++
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char src[] = "Hello, world!";
char dest[20];
strcpy(dest, src);
cout << "源字符串:" << src << endl;
cout << "目标字符串:" << dest << endl;
return 0;
}
```
输出结果:
```
源字符串:Hello, world!
目标字符串:Hello, world!
```
阅读全文