Open Laboratory for Technocrats

Grab the developer role, learn concepts & prepare with senior software engineers to get solutions for problems in a software job. Coding and Programming Solutions crafted for you.

How do I write a C program to calculate Simple Interest?

Simple Interest formula
Simple Interest Formula
Formula
Where,
P is the principal amount
T is the time and
R is the rate

Video:


Code:
#include <stdio.h>
int main(){
float principle, time, rate, SI;
/* Input principle, rate and time */
printf("Enter principle (amount): ");
scanf("%f", &principle);
printf("Enter time: ");
scanf("%f", &time);
printf("Enter rate: ");
scanf("%f", &rate);
SI = (principle * time * rate) / 100;
printf("Simple Interest = %f", SI);
return 0;
}



Keep Coding and Keep Learning :)

Related Posts:

Top #3 Articles

Most Read