Jan 30, 2013

Program of Rectangle Area

/*Program of Rectangle Area*/

#include"stdio.h"
#include"conio.h"
void main()
{
clrscr();
float Length,Width,Rectangle_Area;
printf("Enter the Value of Length & Area");
scanf("%f%f",&Length,&Width);
Rectangle_Area=Length*Width;
printf("The Area of Rectangle is=%f",Rectangle_Area);
getch();
}

No comments:

Post a Comment

Thank you for visit this site. You will get many programming news from here and learn programming very easily.

Popular Posts