write a c program to find the compound interest
Answers
Answered by
1
Explanation:
C Program to Calculate Compound Interest
void main()
float p,r,t,ci;
printf("Enter Principle, Rate and Time: ");
scanf("%f%f%f",&p,&r,&t);
ci=p*pow((1+r/100),t);
printf("Bank Loans Compound Interest = %f%",ci);
Similar questions