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 do you mean by chromounits in java8?
Write a program to print 15 random numbers using foreach of java 8?
What is a cup of java?
What is the += operator called?
What are the changes in java.io in java 8 ?
Can we have return statement in finally clause? What will happen?
Define an abstract class with reference to java.
Can a static member function access member variable of an object?
What is the main use of generics in java?
Can we clone singleton object?
What is the r character?
What is your platform’s default character encoding?
What is :: operator in java 8?
What are the advantages of compiled language?
Are global variables initialized to zero?