error: incompatible types in assignment of 'const char [9]' to 'char [64]'

记录下一些不小心犯的错误。

#define MAX_SIZE   64

char  a[MAX_SIZE];

a ="12345678";

 error: incompatible types in assignment of 'const char [9]' to 'char [64]'                          

 可以用 strcpy解决问题
char * strcpy(char * Dest,const char * Source);

 

参考:

https://blog.csdn.net/u013308744/article/details/51543967

你可能感兴趣的:(error: incompatible types in assignment of 'const char [9]' to 'char [64]')