Recent Posts

9-latest-250px-course

Write a C program for Simple Interest with using input function



Program:-     

#include <stdio.h>

#include <conio.h>

   void main()

{

int SI, P, R,T;

clrscr();

printf("Enter the value of P,R,T ");

scanf("%d%d%d",&P,&R,&T);

SI=(P*R*T)/100;

printf("%d",SI);

getch();

}

Output:-

input:-
Enter the value of P R T
P=10
R=5
T=2
output:-
1
SHARE

Milan Tomic

Hi. I’m Designer of Blog Magic. I’m CEO/Founder of ThemeXpose. I’m Creative Art Director, Web Designer, UI/UX Designer, Interaction Designer, Industrial Designer, Web Developer, Business Enthusiast, StartUp Enthusiast, Speaker, Writer and Photographer. Inspired to make things looks better.

  • Image
  • Image
  • Image
  • Image
  • Image
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment