I have a problem with the structure it returns:
cd.h:15: error: two or more data types in declaration specifiers
maybe something simple ...
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;
source
share