往strcpy()第一个参数里传入char*[],这样为什么出错?而直接用等号却没问题?
我用的是Dev-C++
代码如下:
#include
#include
int main(){
char *name[20] = {"一", "二", "三", "四", "五", "六", "七", "八", "九", "万", "千", "天", "丕", "亮", "源", "雨", "伟", "东", "欢", "笑"};//20
char *s3[1];
// strcpy(s3[0],name[19]);//这样运行出错,编译没问题
// s3[0] = name[2];//这样没问题
printf("%s\n",s3[0]);
return 0;
}