write a program to claculate simple intrest using function function procedure
Answers
Answered by
2
C program to calculate simple interest using functions. #include<stdio. h> int main() { int p; int t,r; printf("First Enter principal:\n"); scanf
Answered by
18
Answer:
Answer:C program calculates the simple interest given the principal amount,rate of interest and time. The formula to calculate the simple interest is: simple_interest = (p * t * r) / 100 where p is principle amount, t is time & r is rate of interest.
Similar questions