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 flag in java?
What are the high-level thread states in java programming?
What is ellipsis in java?
Can we overload the methods by making them static?
What is the difference between assignment and initialization?
Explain the selection sort algorithm?
What is a parameter in a function?
What is the purpose of lambda expressions?
Are registers volatile?
How to make a write-only class in java?
Explain the importance of throws keyword in java?
Is java se free?
What is the use of math abs in java?
What do you understand by classes in java?
Why java is platform independent? Explain.