的動態數組我有一段代碼,我在網絡上找到的,它位於http://www.c.happycodings.com/Data_Structures/code9.html幾個問題。結構
- 爲什麼strarray定義爲
**
? 。我們得先
malloc()
數組,然後malloc()
它的每一個元素?strarray = (struct node **)realloc(strarray, (count + 1) * sizeof(struct node *));
strarray[count] = (struct node *)malloc(sizeof(struct node));
如何free()此陣完全?
由於
1)'基本類型',你的意思是int,double等等,對嗎? – groove
是,炭,短整型,長,布爾,浮點,雙精度,長雙和wchar_t的 – Minion91