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 / suresh
love c
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
int i=10; printf("%d %d %d", i, i=20, i);
Explain setjmp()?
Describe static function with its usage?
Can a local variable be volatile in c?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
how logic is used
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Add Two Numbers Without Using the Addition Operator
Which is best linux os?
What is the difference between memcpy and memmove?
Did c have any year 2000 problems?
What does s c mean on snapchat?
Explain how can you be sure that a program follows the ansi c standard?
What are keywords c?
What is an auto keyword in c?