struct talot
{
int s;
struct node *p;
};
struct node
{
char data;
struct node *next;
};
这样写那后有什么问题么?
比如
struct talot *pa
pa->p->data
不能使用指针!
不知道为什么你!
请高手解释下!
struct talot
{
int s;
struct node *p;
};
struct node
{
char data;
struct node *next;
};
这样写那后有什么问题么?
比如
struct talot *pa
pa->p->data
不能使用指针!
不知道为什么你!
请高手解释下!
试试pa->p.data