在C语言中,可以使用strcpy函数来复制字符串。strcpy函数的原型如下:
char* strcpy(char* destination, const char* source);
其中,destination表示目标字符串,source表示源字符串。
下面是一个示例:
#include <stdio.h>
#include <string.h>
int main() {
char source[] = "Hello, World!";
char destination[20];
strcpy(destination, source);
printf("Source: %s\n", source);
printf("Destination: %s\n", destination);
return 0;
}
输出结果为:
Source: Hello, World!
Destination: Hello, World!
注意:使用strcpy函数时要确保目标字符串的缓冲区足够大,以避免发生缓冲区溢出。