Im creating a program in Dev C++ and the program has a switch statement in it to take the user to a differ 'page'. For example the user presses 1 and it takes them to a page that deals with orders etc. E.g.
switch(mainmenu)
{
case '1':
Menu1();
break;
}
Then when Menu1 is displayed it clears the screen with system("CLS"). How can, once the user has finished using that page, return back to the main menu?