I am trying to design a text-based game in which you click on the choice you wish to select. Can someone please explain to me how to implement mouse clicks in certain areas on the screen? Any help is appreciated.
Either use PDCurses or use the Win32 Console functions. You will have to enable mouse input with SetConsoleMode() at the beginning of your program.
You will also have to wait on input and react to its type (keyboard or mouse) now instead of just using cin or fgets() and the like. The Windows API function to wait is WaitForSingleObject().