摘要: 先看一个例子 void fun(char *dest_str,const char *src_str){ strcpy(dest_str,src_str); } int main(void) { char dest_str[10]={0}; char src_str[]={"hello world" 阅读全文