欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Error[Pe513]: a value of type "int" cannot be assigned to an entity of type "char (*)[6]" D:\Passion

程序员文章站 2022-04-25 21:26:22
...

再移植程序过程中碰到的问题,这里提供一种情况以及解决方法。对于赋值操作

xxx=xxx();

左边xxx是A.c中的指针变量,xxx()是B.c中的函数,结果报错

Error[Pe513]: a value of type "int" cannot be assigned to an entity of type "char (*)[6]" D:\Passion

一种原因是再B.h中没有声明函数xxx();  回到B.h中将xxx()函数声明一次就好。

 

 

相关标签: Pe513