求教关于结构体的问题
typedef struct hel{
int i;
struct hel* next;
}tt;
typedef struct son
{
tt *t;
int yu;
} fa;
这是嵌套结构体。
如何使用指针指向被嵌套的结构体的成员?
fa *p=(fa*)malloc(sizeof(fa));
p->t->next=NULL;
这样好像不可以~
[[it] 本帖最后由 warmsnake323 于 2008-9-30 09:50 编辑 [/it]]