搞定了,谢谢大家;]
代码
enum genre {A, B, C, D, E};
struct recipe
{
genre category;
char name[50];
char ingredients[50];
char instruction[1000];
};
void menu();
void file_check(char *name);
错误:
error C2016: C requires that a struct or union has at least one member
error C2061: syntax error : identifier 'genre'
error C2059: syntax error : '}'
这是我的头文件。我不知道编译器想从我这里得到什么:(我认为它会这样工作