我有一系列指向结构的指针.我可以将所有它们初始化为NULL,如下所示?
struct hash { int bid; struct hash *prev,*next,*fl,*fr; }; struct hash *h[4]={NULL,NULL,NULL,NULL};
c
c ×1