strcpy(destination,source)
函式將源字串(source
)複製到目的(destination
)字串中。
使用範例
建立一個原始檔:string_strcpy.c,其程式碼如下所示 -
#include <stdio.h>
void main()
{
char ch[20] = { 'y', 'i', 'i', 'b', 'a', 'i', '.', 'c', 'o', 'm', '\0' };
char ch2[20];
strcpy(ch2, ch);
printf("Value of second string is: %s \n", ch2);
}
執行上面範例程式碼,得到以下結果 -
Value of second string is: tw511.com