iForeRunner
 
   
 
  c  
   
   
   
 
  Simple Interest  
 
 



Program to find SimpleInterest




/*Simple interest program*/
main()
{
float p,t,r,si;
clrscr();
printf("\nEnter principle,interest and time ");
scanf("%f%f%f",&p,&r,&t);
si=(p*t*r)/100;
printf("\nSimple interst is %0.2f",si);
getch();
}

Please send comments to vgdarur.javafive@blogger.com