将字符数组s2复制给s1用strcpy函数
时间: 2024-05-05 21:18:15 浏览: 70
C语言程序设计-编写一个程序,将字符数组s2中的全部字符拷贝到字符数组s1中,不能使用strcpy函数。拷贝时,
5星 · 资源好评率100%
你可以使用strcpy函数将字符数组s2复制给s1。函数原型为:
```c
char* strcpy(char* s1, const char* s2);
```
其中,s1是目标数组,s2是源数组。函数返回值是目标数组s1的地址。
用法如下:
```c
char s1[20];
char s2[10] = "hello";
strcpy(s1, s2);
printf("s1: %s\n", s1); // 输出:s1: hello
```
这样就将字符数组s2复制给了s1。
阅读全文