Multiple programs in one project

Hey guys, so for a CIS class i'm taking we have seven programs we've compiled. The prof is asking us to combine them into one big project with a menu that allows him to choose one of the 7 programs he wants to run.

I have NO clue how to do that, we never even touched on that in my previous CIS class. Any suggestions or articles or anything?

I feel behind and the class just started :/
closed account (E0p9LyTq)
Each separate program has a main() function.

Change the 7 main function names to a name other than main, and cut and paste the code into a new source file. Write a new main that calls the function the user requests.
Topic archived. No new replies allowed.