strcpy怎么使用
时间: 2023-10-22 16:26:55 浏览: 73
strcpy的用法.pdf
strcpy函数的作用是将一个字符串复制到另一个字符串中。
使用strcpy函数的语法如下:
```c
char* strcpy(char* destination, const char* source);
```
其中,`destination` 是目标字符串,也就是要将源字符串复制到的位置;`source` 是源字符串,即要复制的字符串。
下面是一个示例代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char source[] = "Hello, world!"; // 源字符串
char destination[20]; // 目标字符串
strcpy(destination, source); // 将源字符串复制到目标字符串
printf("目标字符串: %s\n", destination);
return 0;
}
```
在这个例子中,将源字符串 "Hello, world!" 复制到了目标字符串中。运行程序后,将会输出 "目标字符串: Hello, world!"。
阅读全文