Question:C program for area of right angled triangle 

Answer 
#include<stdio.h>
int main(){
    float h,w;
    float area;

    printf("Enter height and width of the right angled triangle : ");
    scanf("%f%f",&h,&w);

    area = 0.5 * h * w;
    printf("Area of right angled triangle is: %.3f",area);
    return 0;
}
Sample output: Enter height and width of the right angled triangle: 10 5 Area of right angled triangle is: 25.000 

+ ExplanationNot Moderated
+ Report
Total Preview: 523
C program for area of right angled triangle
Copyright © 2024. Powered by Intellect Software Ltd