program for validity of triangle from 3 side
Answers were Sorted based on User's Feedback
Answer / pritam
if(a < (b+c))
if( b < (c+a))
if(c < (a+b))
printf("its a triangle\n");
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / rakesh ranjan
I AGREE WITH PRITAM AND MANU
................................
Abhradeep Chatterjee is a real STUPID
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / abhradeep chatterjee
No above two answers are not corret, because i am not sure
about the shape and angle of the triangle.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / abhradeep chatterjee
yes, the above two answers are correct.
| Is This Answer Correct ? | 1 Yes | 3 No |
C program to read the integer and calculate sum and average using single dimensional array
Is null a keyword in c?
Concat two string with most overlapped substring has to remove "abcd"+ "cdef" = "abcdef
What are identifiers and keywords in c?
How can I change the size of the dynamically allocated array?
Differentiate between ordinary variable and pointer in c.
What is define c?
Write a c program to print the sizes and ranges of different data types in c?
What is the use of define in c?
how to TOGGLE Nth bit of variable in a MACRO
what is the use of ‘auto’ keyword?
Do pointers store the address of value or the actual value of a variable?