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 |
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
why we use "include" word before calling the header file. is there any special name for that include??????
When can a far pointer be used?
HOW TO SWAP TWO NOS IN ONE STEP?
How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)
What is break in c?
Write a program to use switch statement.
0 Answers Agilent, Integreon, ZS Associates,
What is a wrapper function in c?
can we write a c program with out using main
An array name contains base address of the array. Can we change the base address of the array?
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
what is pointer?