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 |
How do you determine the length of a string value that was stored in a variable?
What is a scope resolution operator in c?
What is c variable?
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
What's the total generic pointer type?
Why c is called a middle level language?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
What is substring in c?
What is time null in c?
write a c program that prints all multiples of 3between 1 and 50.
write a progam to compare the string using switch case?
What is a keyword?