I\'m making a class that displays a message to the user and asks them if they want to return to the start of the program, but the message function is in a separate class from wh
Assuming that you could change dispMessage(void) to something like bool askForReturnToStart() then you could use that to build a loop within main, f.e.:
int main() {
Message dm;
do {
// whatever
} while (dm.askForReturnToStart());
}