#ifndef INTERESTCALCULATOR_H_ #define INTERESTCALCULATOR_H_ #include void calculateYearlyInterest(); void calculateMonthlyInterest(); void askForSavingGoal(float principalAmount, float accInterestPerYear); float initiateInterest(float principalAmount, float interest, float time); void troubleshoot(int errorCode); #endif