strcpy函數的使用方法是將一個字符串(源字符串)復制到另一個字符串(目標字符串)中。
函數原型:
char *strcpy(char *dest, const char *src);
參數說明:
返回值:返回目標字符串的指針。
使用示例:
#include <stdio.h>
#include <string.h>
int main() {
char src[] = "Hello, world!";
char dest[20];
strcpy(dest, src);
printf("目標字符串為:%s\n", dest);
return 0;
}
運行結果:
目標字符串為:Hello, world!
在上述示例中,我們首先定義了一個源字符串src和一個目標字符串dest。然后,使用strcpy函數將源字符串src復制到目標字符串dest中。最后,通過printf函數打印目標字符串dest的內容,結果為"Hello, world!"。