函数表达式将字符数组s2拷贝到s1中
时间: 2023-09-03 14:15:34 浏览: 86
C语言程序设计-编写一个程序,将字符数组s2中的全部字符拷贝到字符数组s1中,不能使用strcpy函数。拷贝时,
5星 · 资源好评率100%
可以使用标准库函数strcpy()来完成该任务。其函数原型为:
```c
char *strcpy(char *s1, const char *s2);
```
其中,s1为目标字符数组,s2为源字符数组。该函数会将s2中的字符拷贝到s1中,并返回s1的地址。
示例代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char s1[20], s2[] = "Hello, world!";
strcpy(s1, s2);
printf("s1: %s\n", s1);
return 0;
}
```
输出结果:
```
s1: Hello, world!
```
阅读全文