📅  最后修改于: 2020-10-22 05:32:35             🧑  作者: Mango
strcpy(destination,source)函数将源字符串复制到目的地。
#include
#include
int main(){
char ch[20]={'j', 'a', 'v', 'a', 't', 'p', 'o', 'i', 'n', 't', '\0'};
char ch2[20];
strcpy(ch2,ch);
printf("Value of second string is: %s",ch2);
return 0;
}
输出:
Value of second string is: javatpoint