I am trying to get this program to start running but currently I just get errors. I am not sure how to get this to work. If I change the class SavingsAccount to public it should
You must declare an instance of the SavingsAccount class first. For example:
int main() { SavingsAccount account; account.Information(); ... return 0; }
Additionally, yes, the methods of the class that you want to call must be public.