标签: c
有人可以告诉我如何分配每个v[i].word和下一个NULL?
v[i].word
NULL
Struct hash{ Char*word; Hash*next; }*v[10];
答案 0 :(得分:0)
制作一个for循环,让它从i = 0迭代到9。在每次迭代中,为其分配一个struct hash和点v[i]。然后,根据需要初始化*v[i]。不要忘记检查malloc()是否失败。
for
i = 0
9
struct hash
v[i]
*v[i]
malloc()