一开始我下意识的直接赋值
char buf[SIZE];
error: incompatible types in assignment of 'const char [5]' to 'char [128]'
buf="full" ;
后来才知道必须strcpy(buf,"Full");
buf是个数组是个const char *常量,不能够修改其值,执行赋值操作是非法的
一开始我下意识的直接赋值
char buf[SIZE];
error: incompatible types in assignment of 'const char [5]' to 'char [128]'
buf="full" ;
后来才知道必须strcpy(buf,"Full");
buf是个数组是个const char *常量,不能够修改其值,执行赋值操作是非法的