program of simple interest September 11, 2019 Get link Facebook X Pinterest Email Other Apps // program of simple interest #include<stdio.h> #include<conio.h> main(); { float SI,P,N,R; clrscr(); printf("Enter the value of P,N and R:"); scanf("%f%f%f",&P,&N,&R); SI=(P*N*R)/100; printf("Simple interest=:%6.2f",SI); getch(); } Comments
Comments
Post a Comment