Showing posts with label Program of Verses Area. Show all posts
Showing posts with label Program of Verses Area. Show all posts

Jan 30, 2013

Program of Verses Area

/*Program of Verses Area*/

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

Popular Posts