I'm uncomfortable with objects and usually just simplistically spell things out.
Question 1: in a switch how would I call a member function called this:
void BankingSystem::CreateAccount()
Question 2: Can I call this :
[code]
void PrintMenu()
{
yes you can because it evaluates the function and then gives the value to cout. i wouldnt use object that way because in c++ it means something else. its called a function usually
Thanks! So I"m going to use a switch for going between these 6 options. Because I'm an amateur I would generally have longwinded instruction in the body of each case for the six but for this will instead be using the member function spelled out in :
void BankingSystem::CreateAccount().
I know I'm going to do some sort of .CreateAccount() to call it but I"m at a loss on the phrasing.
Any input?
Thanks again!
That's just the first part but I think with a helpful example that I should be able to get the rest.