dereferencing pointer to incomplete type

前端 未结 7 1387
梦谈多话
梦谈多话 2020-12-08 01:37

I\'ve seen a lot of questions on this but I\'m going to ask the question differently without specific code. Is there a way of EASILY determining w

相关标签:
7条回答
  • 2020-12-08 02:36

    this error usually shows if the name of your struct is different from the initialization of your struct in the code, so normally, c will find the name of the struct you put and if the original struct is not found, this would usually appear, or if you point a pointer pointed into that pointer, the error will show up.

    0 讨论(0)
提交回复
热议问题