21.2k views
21 votes
Wap to calculate the simple interest for the given PTR​

1 Answer

6 votes

Answer:

➢ C

  • #include<stdio.h>
  • int main()
  • {
  • float P , R , T , SI ;
  • P =34000; R =30; T = 5;
  • SI = (P*R*T)/100;
  • printf("\\\\ Simple Interest is : %f", SI);
  • return (0);


Aiko \: Mizuki...

#CarryOnLearning

User Fahrulazmi
by
4.9k points