/* * Author : Amit Dutta * File : interest.h */ #define SIMPLE_INTEREST(p, r, t) ((p * r * t) / 100.0) #define AMOUNT(p, si) (p + si)