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.
11 lines
333 B
11 lines
333 B
#ifndef INTERESTCALCULATOR_H_
|
|
#define INTERESTCALCULATOR_H_
|
|
|
|
#include <stdio.h>
|
|
|
|
void calculateYearlyInterest();
|
|
void calculateMonthlyInterest();
|
|
void askForSavingGoal(float principalAmount, float accInterestPerYear);
|
|
float initiateInterest(float principalAmount, float interest, float time);
|
|
void troubleshoot(int errorCode);
|
|
#endif
|