将读入的字符串s1复制给字符串s2
时间: 2023-10-06 09:12:37 浏览: 154
字符串复制
5星 · 资源好评率100%
可以使用strcpy函数将字符串s1复制给字符串s2,函数的格式如下:
```c
char *strcpy(char *s2, const char *s1);
```
其中,s1是要复制的字符串,s2是存储复制后字符串的目标地址。函数返回s2的值。
示例代码如下:
```c
#include <stdio.h>
#include <string.h>
int main() {
char s1[] = "Hello, world!";
char s2[20];
strcpy(s2, s1);
printf("s1: %s\n", s1);
printf("s2: %s\n", s2);
return 0;
}
```
输出结果为:
```
s1: Hello, world!
s2: Hello, world!
```
阅读全文