DVC++中strcpy
时间: 2023-10-16 10:10:27 浏览: 255
strcpy函数
在DVC++中,strcpy函数用于将一个字符串复制到另一个字符串中。它的语法如下:
```cpp
char* strcpy(char* destination, const char* source);
```
参数`destination`是目标字符串,参数`source`是源字符串。该函数会将源字符串的内容复制到目标字符串中,并返回目标字符串的指针。
需要注意的是,使用strcpy函数时要确保目标字符串有足够的空间来存储源字符串的内容,否则可能导致缓冲区溢出。
以下是一个示例:
```cpp
#include <iostream>
#include <cstring>
int main() {
char source[] = "Hello, world!";
char destination[20];
strcpy(destination, source);
std::cout << "Copied string: " << destination << std::endl;
return 0;
}
```
输出结果为:
```
Copied string: Hello, world!
```
阅读全文