Simple Interest and Compound Interest Program in C

WAP that calculates the Simple Interest and Compound Interest. The Principal, Amount, Rate of Interest and Time are entered through the keyboard.

#include<stdio.h>
#include<math.h>
/*2. WAP that calculates the Simple Interest and Compound Interest. The Principal, Amount, Rate of Interest and Time are entered through the keyboard.*/
void main() 
{
	float p, r, t, a, si, ci;
	printf("Enter Principle=");
	scanf("%f",&p);
	printf("Enter Rate=");
	scanf("%f",&r);
	printf("Enter Time=");
	scanf("%f",&t);
	
	si=(p*r*t)/100;
	
	printf("Simple Interest=%f",si);
	a = p*(pow((1 + r / 100), t));
	ci =  a - p;
	printf("\nCompound Interest=%f",ci);	
}


Output:

Enter Principle=100
Enter Rate=10
Enter Time=3
Simple Interest=30.000000
Compound Interest=33.100010
c language tutorial learn c language study c language