仍是C語言的指針問題。。

今天把數據結構的鏈表複習了一下,誰知道,居然發現了本身對指針的瞭解不夠透徹,下面就是個人問題代碼:html #include "stdio.h" typedef struct term{ float coef;//係數 int expn;//指數 }; typedef struct Node{ struct term node; struct Node *next; }; typede
相關文章
相關標籤/搜索