Calculation of Simple Interest

This Program calculates the value of Simple Interest. The Values of Principle, Rate of Interest and the number of years is input through the keyboard.


Write a program to calculate the simple interest.
The values of principle, rate of interest and the number of years are input from the keyboard.
Display the value of the calculated Simple interest on a new line.



#include<stdio.h>
main ()

{
int p, n;
float r, si;
printf(" Enter the values of p, n, r: ");

scanf("%d %d %f", &p, &n, &r);

si=p*n*r/100;

printf("%f", si);
}


The File can be found at:
Download File

Comments

Popular posts from this blog

C Program - Calculation of Area and Circumference of a Circle using Pointers

Matchstick Game using C Programming

Generation of Fibonacci Sequence using Recursion.