typedef struct item { char *text; int count; struct item *next; };
所以我有这个结构与上面定义的节点,但我得到下面的错误,我无法弄清楚什么是错的.
warning: useless storage class specifier in empty declaration };
typedef struct item { char *text; int count; struct item *next; }item;