This post is about making a program to calculate Simple Interest using C Language.
The programming for calculating Simple Interest using C Language goes like this:-
#include <stdio.h>
#include <conio.h>
void main()
{
clrscr();
int=a,b,c,d;
printf("Enter the Amount: \n");
scanf("%d",&a);
printf("Enter the Rate of Interest: \n");
scanf("%d",&b);
printf("Enter the Time: \n");
scanf("%d",&c);
d=a*b*c/100;
printf("The Simple Interest for %d is = %d",a,c);
getch();
}
Next Program »» Coming soon
For further Knowledge and Tutorial Keep Visiting :-
TechJatt - The source for all kind of Tutorial on Ethical Hacking
Follow Us on Facebook or Twitter or Add to Circles on Google + to remain updated