Write your question here.
Hi there, I would just like to ask what I'm supposed to do for user to just hit enter for the program to continue.
My program is a Menu program, and on case "4" it prints out the the inputs from choices 1-3 and after it does that it prompts user to hit enter to continue and uses a goto command to go back in menu.
Hi, you could try using the function that Duoas described in http://www.cplusplus.com/forum/articles/7312/ (I suggest reading "The Standard Way" part).
The article was written for users who couldn't keep the console window open after program termination, but it works just as well in any other situation.
Also, a bit of restructuring to allow you to use a while loop here would definitely be preferred to your use of goto.