在C语言中,可以使用strcpy()函数来复制一个字符串到另一个字符串中。这个函数定义在string.h头文件中,其原型如下:
char *strcpy(char *dest, const char *src);
其中,dest是目标字符串,src是源字符串。下面是一个简单的例子:
#include <stdio.h>
#include <string.h>
int main() {
char src[] = "Hello, World!";
char dest[100];
strcpy(dest, src);
printf("Source string: %s\n", src);
printf("Destination string: %s\n", dest);
return 0;
}
运行上面的代码,将得到输出:
Source string: Hello, World!
Destination string: Hello, World!