【发布时间】:2012-11-04 04:13:03
【问题描述】:
有什么区别
typedef struct node *node_ref;
typedef char *cstring;
struct node {
cstring string;
node_ref link;
};
和
typedef struct node *node_ref;
struct node {
char string;
node_ref link;
};
我的程序编译良好,没有任何声明的警告,所以我不知道它有什么不同。
【问题讨论】: