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 |
Explain about the functions strcat() and strcmp()?
c program to subtract between two numbers without using '-' sign and subtract function.
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986
How do you determine if a string is a palindrome?
How can you determine the size of an allocated portion of memory?
Why is c still so popular?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
How does #define work?
When is a void pointer used?
How can I manipulate strings of multibyte characters?