Write a program to find simple interest(SI=p*n*r/100).?
Answers
Answered by
2
Answer:
C
- #include<stdio.h>
- int main()
- float P , R , T , SI ;
- P =34000; R =30; T = 5;
- SI = (P*R*T)/100;
- printf("\n\n Simple Interest is : %f", SI);
- return (0);
Similar questions
Math,
3 months ago
Social Sciences,
6 months ago
Geography,
6 months ago
Math,
10 months ago
Math,
10 months ago