Write a function to find the area of a triangle whose
length of three sides is given
Answer Posted / gajendra patil
#include <stdio.h>
#include <math.h>
float tarea(int a,int b,int c){
int cond1=0,cond2=0;
float s,area;
if((a > 0.0) && (b > 0.0) && (c > 0.0)){
cond1 = 1;
}
if((a+b > c) && (a+c > b) && (b+c > a)){
cond2 = 1;
}
if(cond1 && cond2){
s=(a+b+c)/2.0;
area= (sqrt(s*(s-a)*(s-b)*(s-c)));
printf("=================================\n");
printf("AREA OF TRIANGLE IS [ %f ]\n",area);
printf("=================================\n");
}else
printf("\nERROR: This is not a triangle!\n");
};
int main(){
int a,b,c;
float area;
printf("\nArea of Triangle");
printf("\n-------------------------\n");
printf("Enter three sides: \n");
printf("\nEnter size for a: ");
scanf("%d",&a);
printf("\nEnter size for b: ");
scanf("%d",&b);
printf("\nEnter size for c: ");
scanf("%d",&c);
tarea(a,b,c);
return 0;
}
| Is This Answer Correct ? | 15 Yes | 9 No |
Post New Answer View All Answers
What is a macro in c preprocessor?
Describe the steps to insert data into a singly linked list.
what is different between auto and local static? why should we use local static?
What is a void * in c?
What is nested structure?
Function calling procedures? and their differences? Why should one go for Call by Reference?
What is union in c?
What is sorting in c plus plus?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Not all reserved words are written in lowercase. TRUE or FALSE?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What are 'near' and 'far' pointers?
Should I learn data structures in c or python?
Write a program to print factorial of given number without using recursion?
Write a program to print all permutations of a given string.