我已經閱讀了關於同一個錯誤的5個不同的問題,但我仍然無法找到與我的代碼有什麼問題。C - 取消引用指向不完整類型的指針
的main.c
int main(int argc, char** argv) {
//graph_t * g = graph_create(128); //I commented this line out to make sure graph_create was not causing this.
graph_t * g;
g->cap; //This line gives that error.
return 1;
}
.C
struct graph {
int cap;
int size;
};
.H
typedef struct graph graph_t;
謝謝!
請告訴我的錯誤? – 2012-03-07 17:42:40
@GregBrown:他正在取消引用指向不完整類型錯誤的指針。 – 2012-03-07 17:43:37