Computer Science, asked by margamincho, 8 months ago

Write a program to calculate compound interest.

Answers

Answered by Siriaakanksha
4

Answer:

C Program to Calculate Compound Interest

Explanation:

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%

Similar questions