📜  错误:取消引用指向不完整类型的指针 - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:40.631000             🧑  作者: Mango

代码示例1
The “dereferencing pointer to incomplete type” error commonly occurs in C when one tries to dereference a type (usually a struct) that is:

not declared at all.
declared, but not defined.