Okay I'm completely stuck in this part
---If P is pressed, display the content of an array - make sure you display all registered students. Do not terminate the program. After displaying students, you should prompt the user with the menu again. If there are no registered students, you should prompt the message: No registered students!--
When I get to store the student's info into the array and then when the program loops back to the menu and I press P to display the array nothing comes out :(
This is my first time taking C++ and I get very confused when it comes to structures and arrays.
any help? advice?
And also I'm supposed to write a function that allows me to drop certain student by name. That I'm completely clue less. Somebody please help me out! I've been going through hell and back.
You should convert user input to uppercase. For example, if the user enters lowercase 'p', nothing willl happen because none of your if statemnts evaluate to true with a lowercase p.
try adding this option = toupper(option); after you input the option variable.