main()
{
float f1=10.5;
double db1=10.5
if(f1==db1)
printf("a");
else
printf("b")
}
Answer Posted / jayashree
b
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
What is the explanation for the dangling pointer in c?
What are header files in c?
What does void main return?
In which header file is the null macro defined?
Which of these functions is safer to use : fgets(), gets()? Why?
What is a ternary operator in c?
to find the closest pair
What is difference between union All statement and Union?
Is there anything like an ifdef for typedefs?
can anyone please tell about the nested interrupts?
What is const volatile variable in c?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is the value of uninitialized variable in c?
What is meant by gets in c?
`write a program to display the recomended action depends on a color of trafic light using nested if statments