Find Simple Interest & Area Of Circle In C

WAP To Find Simple Interest & Area Of Circle In C Program
\\ If you have any query or questions on my post then please comment below //

Program 7: Write A Program To Find Out Simple Interest In C Programming:  
If i have to find out simple interest then i have to know the formula of Simple Interest:
Simple Interest = (profit*rate*time)/100
And in my program the value of profit, rate & time period should enter by keyboard.
-------------------------------------------------------
#include<stdio.h>
#include<conio.h>
void main()
{
int si,p,r,t;
printf("Enter The value of profit:");
scanf("%d", &p);
printf("Enter The value of rate:");
scanf("%d", &r);
printf("Enter The value of time:");
scanf("%d", &t);

si=(p*r*t)/100;
printf("Simple Interest is:%d "si);
getch();
}

--------------------------------------------------------------
Please Run This Program And If you have any query or you find any error in this program then please comment below.
Video Tutorial On Finding Simple Interest In C Programming - Hindi:



Program 8: Write A Program To Find Out Area Of Circle In C Programming:  
If i have to find out area then i have to know the formula area of circle:
Circle =pie*(r*r); Here we use pie = 22/7 [Value Of Pie]
And in my program the value of r or radious should enter by keyboard.
-------------------------------------------------------
#include<stdio.h>
#include<conio.h>
void main()
{
int area,r;
printf("Enter The value of radius:");
scanf("%d", &r);

area=22/7*(r*r);;
printf("Simple Interest is:%d "area);
getch();
}

--------------------------------------------------------------
Please Run This Program And If you have any query or you find any error in this program then please comment below.


Very Soon We Are Sharing Our This Post Video Tutorials In Hindi And English Language



Click Here To Know How To Download Above Video Tutorials Or YouTube Videos Free


 Enter Your Email Id To Get Our Programming, Web Development, Video Tutorial, Job Updates In Mail :

Labels: