filmov
tv
How to create Area of triangle in c [hindi]
Показать описание
void main()
{
float height, base, aot,hb;
clrscr();
printf("please enter height and base :");
scanf("%f %f",&height,&base);
hb = height*base;
aot=hb/2;
printf("area of triangle %f",aot);
getch();
}
{
float height, base, aot,hb;
clrscr();
printf("please enter height and base :");
scanf("%f %f",&height,&base);
hb = height*base;
aot=hb/2;
printf("area of triangle %f",aot);
getch();
}