Skip to main content

Calculate simple interest

#include<stdio.h>
#include<conio.h>
{
clrscr();
float p=1000,r=5,t=3;
float si=(p*r*t)/100;
printf("Simple Interest = %f",si);
getch();
}

Comments

Popular posts from this blog