I trying to make a program where you have a menu to leave comments, view comments, and create an account. The I made the menu to be a switch statement. In most of the cases I need a "user object", but that is created in case1 and it's scope is only in to case1. I used a "User pointer" so I can use it in the other cases. I have the switch statement so the it runs until the user exits. When I add the pointer in case1 and ran the program it crashed. "My question is there another way to have an "user object created in case1 " be accessible to all the other cases ?? I trying to make a program where you have a men