Hello aspirant,
Here is program for calculating area of traingle in c.
#include <stdio.h>
int main()
{
float base, height, area;
/* Input base and height of triangle */
printf("Enter base of the triangle: ");
scanf("%f", &base);
printf("Enter height of the triangle: ");
scanf("%f", &height);
/* Calculate area of triangle */
area = (base * height) / 2;
/* Print the resultant area */
printf("Area of the triangle = %.2f sq. units", area);
return 0;
}
Please tell me if you get any error.
Hope this helps you
Feel free to ask any questions
All the best for your future
Regular exam updates, QnA, Predictors, College Applications & E-books now on your Mobile