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 mnemonic code?
Which package is imported by default?
Why are the objects immutable in java?
How do you sort in java?
What are constructors in java?
What is difference between filereader and bufferedreader?
What is int lol?
How do you check if an arraylist is not empty?
Can we make main() thread as daemon?
Can an integer be a string?
what is nested class in java?
Implement two stacks using a single array.
How can constructor chaining be done by using the super keyword?
How do you control extraneous variables?
What is a stack class in java ?