再请教 程序匠人一个C语言的问题:
我在您的<C语言高效编程的的四招技巧>一文中看到这样的用法
const char string2[len] ="this is a example!";
char * cp;
cp = string2 ;
可编译器报错:
Error[Pe513]: a value of type "unsigned char const *" cannot be assigned to an entity of type "unsigned char *" D:\work\vfddiplay20091023(v2.0)\program\display2.01\Project\Template\User\Main\main.c 118
怎么处理 |