What is the output for the below program?
void main()
{
float me=1.1;
double you=1.1;
if(me==you)
printf("love c");
else
printf("know c");
}
Answer Posted / kumar
love c
| Is This Answer Correct ? | 4 Yes | 11 No |
Post New Answer View All Answers
How many identifiers are there in c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Explain the difference between getch() and getche() in c?
What is cohesion and coupling in c?
What are structures and unions? State differencves between them.
What is a newline escape sequence?
What is a char in c?
What oops means?
What is structure pointer in c?
Are c and c++ the same?
Is it acceptable to declare/define a variable in a c header?
What is meant by 'bit masking'?
What is a const pointer?
What is extern c used for?
a value that does not change during program execution a) variabe b) argument c) parameter d) none