struct ListElement {
char element;
ListElement* nextaddres;
};
class MyList {
ListElement *head; //Верхушка стека
bool Empty()
}
bool MyList::Empty() {
return *head->nextaddres == nullptr ? true: false;
}
return *head->...
должно быть return head->...
.