ADVT POST

simple interest c program

simple interest c program 


#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int p,r,t,si;
p=10;
r=20;
t=30;
si=(p*r*t)/100;
printf ("%d",si);
getch();
}
Share on Google Plus
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.