Find the Simple Interest in C

Advertisements

Prev Tutorial Next Tutorial

C Program to Find the Simple Interest

There are three values involve in simple interest, Principal, Rate and Time. Simple interest is simple and easyest way to calculate interest charge on a loan. This type of interest usually applies for short-term loans.

Formula for Simple Interest

Simple Interest = (P * T * R)/100
  • P = Principle amount
  • T= Time Period
  • R= Rate of interest

Calculate Simple Interest in C

#include<stdio.h>
#include<conio.h>

void main() 
{
  float amount, rate, time, si
 
  clrscr();
  printf("\nEnter Principal Amount : ");
  scanf("%f", &amount);
 
  printf("\nEnter Rate of Interest : ");
  scanf("%f", &rate);
 
  printf("\nEnter Period of Time   : ");
  scanf("%f", &time);
 
  si = (amount * rate * time) / 100;
  printf("\nSimple Interest : %f", si
  
 getch();
}

Output

Enter Principal Amount: 
Enter Rate of Interest:
Enter Period of Time:

Simple Interest:

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements