http://www.c.happycodings.com/Data_Structures/code9.htmlにあるWebで見つけたコードについていくつか質問があります。
- strarrayが次のように定義されているのはなぜ
**
ですか? 最初
malloc()
に配列を作成し、次にmalloc()
その各要素を作成する必要がありますか?strarray = (struct node **)realloc(strarray, (count + 1) * sizeof(struct node *));
strarray[count] = (struct node *)malloc(sizeof(struct node));
この配列を完全にfree()する方法は?
ありがとう