You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
333 B

  1. #ifndef INTERESTCALCULATOR_H_
  2. #define INTERESTCALCULATOR_H_
  3. #include <stdio.h>
  4. void calculateYearlyInterest();
  5. void calculateMonthlyInterest();
  6. void askForSavingGoal(float principalAmount, float accInterestPerYear);
  7. float initiateInterest(float principalAmount, float interest, float time);
  8. void troubleshoot(int errorCode);
  9. #endif