Answer Posted / 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 |
Post New Answer View All Answers
What is the condition that is applied with ?: Operator?
What is function pointer c?
Why should I prototype a function?
Distinguish between actual and formal arguments.
What should malloc(0) do?
Differentiate Source Codes from Object Codes
How can I read and write comma-delimited text?
What is the size of enum in c?
What is optimization in c?
Explain indirection?
Explain how do you search data in a data file using random access method?
What is 2 d array in c?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
Explain what are the different data types in c?
What is void main ()?