在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!