Program of Area of Triangle September 11, 2019 Get link Facebook X Pinterest Email Other Apps // Program of Area of Triangle (1/2*b*h) #include<stdio.h> #include<conio.h> main(); { float AREA,B,H; clrscr(); printf("Enter the base and Height:"); scanf("%f%f",&B,&H); AREA=0.5*B*H; printf("Area of given is :%6.2f",AREA); getch(); } Comments
Comments
Post a Comment