#include<stdio.h> #include<conio.h> void main() { int t; float p,r,si,a; clrscr(); printf(“enter the r principle,rate & time :“); scanf(“%f%f%d”,&p,&r,&t); si=p*r*t/100; a=p+si; printf(“s.i = %f and amount = %f”,si,a); getch(); }
© 2019 CODE WITH SHARAD | Privacy Policy
Comments