int a=1;
float b=1.0;
System.out.println(a==b);
Answer Posted / john
what is the output fr this C code ? AND WHY ?
main()
{
int a=1;
float b=1.0;
if(a==b)
printf("true");
else
printf("false");
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the differences between c++ and java? Explain
What is binary search in java?
Why is boolean important?
How to connect to a remote database using Applet?
When to use runnable interface vs thread class in java?
What is off heap memory?
How do you override a variable in java?
What are the restrictions that are applied to the java static methods?
What are the different ways of implementing thread? Which one is more advantageous?
What is a private class in java?
What is the difference between multitasking and multithreading in Java
Difference between final and effectively final ? Why is effectively final even required ?
Can Exception handling we can handle multiple catch blocks?
When is the garbage collection used in Java?
Why java is call by value?