【发布时间】:2010-05-24 12:07:41
【问题描述】:
我遇到了它返回的结构问题:
cd.h:15: error: two or more data types in declaration specifiers
它可能很简单......
struct cd {
char titel[32];
char artiest[32];
int speelduur;
};
typedef struct cd CD;
struct cdlijst{
CD *item;
struct cdlijst *next;
}
typedef struct cdlijst CDLijst;
【问题讨论】:
-
OMG 找到了,它是丢失的; :(