c语言字符串数组拷贝
时间: 2023-12-07 20:40:10 浏览: 168
字符串数组-C语言PPT课件
C语言中,字符串数组拷贝可以使用strcpy函数或strcpy_s函数来实现。其中,strcpy函数用于将一个字符串复制到另一个字符串数组中,而strcpy_s函数则是在复制的同时进行了安全检查,避免了缓冲区溢出的问题。
以下是两种字符串数组拷贝的例子:
1.使用strcpy函数进行字符串数组拷贝
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[20] = "hello";
char str2[20];
strcpy(str2, str1);
printf("str2: %s\n", str2); // 输出:str2: hello
return 0;
}
```
2.使用strcpy_s函数进行字符串数组拷贝
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[20] = "hello";
char str2[20];
strcpy_s(str2, sizeof(str2), str1);
printf("str2: %s\n", str2); // 输出:str2: hello
return 0;
}
```
阅读全文