WAP to find simple interest?
Answers
Answered by
0
1. #include<stdio.h>
2. int main()
3. float P , R , T , SI ;
4. P =34000; R =30; T = 5;
5. SI = (P*R*T)/100;
6. printf("\n\n Simple Interest is : %f", SI);
7. return (0);
Similar questions