PROGRAM FOR CALCULATING SIMPLE INTREST

#include<stdio.h> #include<conio.h> void main() {   int p,t,r;   float si;   clrscr();   printf("enter p,t,...

#include<stdio.h>
#include<conio.h>
void main()
{
  int p,t,r;
  float si;
  clrscr();
  printf("enter p,t,r values");
  scanf("%d%d%d",&p,&t,&r);
  si=p*t*r/100;
  printf("\n Simple Intrest is %f",si);
  getch();
}

  
OUT PUT:

simple interest




Related

C Programs 7600061438483268199

Post a Comment

emo-but-icon

item