Dev-C++ gives me that error when I try to compile this code:
MENU *menuitem[] = {
{100, 100, "MAIN MENU", 0},
{100, 125, "New Game", 1},
{100, 140, "Load Game", 0}
};
MENU is a structure. What does this error mean and what do I do to fix it. Thanks alot!



LinkBack URL
About LinkBacks



, just like a pointer is, that's why you compiler complained about it. You can't assign a structure to a single variable.