write an program to calculate comound interest
Answers
Answered by
1
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);
Explanation:
hope it helps you . Please do follow me and mark me as brainliest
tq
Answered by
1
Answer:
l can't understand your question plz SORRY
Similar questions