Tuesday, 9 July 2013

Program to calculate Area of Angular Lateral Triangle

#include <stdio.h>
void main()
{
int l,h;
float area;
clrscr ();
printf("Enter the number");
scanf("%d%d",&l,&h);
area= 0.5*l*h;
printf("%f",area);
getch();

}

No comments:

Post a Comment