Program to print the Simple interest in c-language

Program to print the Simple interest in c-language

#include<stdio.h>
int main()
{
float p,r,t,s;
printf("Enter principle value\n");
scanf("%f",&p);
printf("Enter rate of interest \n");
scanf("%f",&r);
printf("Enter time \n");
scanf("%f",&t);
s=(p*r*t)/100;
printf("Simple Interest=%f",s);
}

OUTPUT
Enter principle value
100
Enter rate of interest
2.5
Enter time
4
Simple Interest=10.000000

From above program you got the basis idea of formula implementation ,and also you aware to float data type.

If you like this program then you can share it and for any issues you can direct contact with me from Home Page.


For regular updates you can also follow my site.

Comments

Popular posts

Creative pattern of butterfly in C-language

Variable & Datatype for C-programming

Addition of two numbers in c language

Introduction of C-language.

Language Translator of C-language

Program to cheque enter number is even or odd in c-language

Program to print the cube of a number in c-language

Linear search in C-language