write a program to calculate the simple interest in basic 256
Answers
Answered by
3
- 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