定义一个结构体指针变量

如题所述

第1个回答  2012-04-03
struct node
{ int date;
struct node *next;
};
第2个回答  2012-03-31
struct node
{
int a;
char b;
} NODE;
struct node *pt;
第3个回答  2012-04-01
typedef struct Link
{
int * a;
int a;
}
第4个回答  2012-04-02
struct node
{
int a;
} NODE;
struct node *pt;
第5个回答  2012-03-30
struct node
{ int p;
struct node *next;
};
相似回答