Computer Science, asked by LekshmiSREEKANTH, 3 months ago

write a c program to find the compound interest​

Answers

Answered by Anonymous
2

Answer:

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