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
What are the advantages of external class?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What is the hardest programming language?
What are global variables and how do you declare them?
What are keywords in c with examples?
What are valid signatures for the Main function?
When can you use a pointer with a function?
how to find binary of number?
Explain what does it mean when a pointer is used in an if statement?
Write a program to print “hello world” without using semicolon?
Do you know null pointer?
How will you write a code for accessing the length of an array without assigning it to another variable?
How many levels of pointers have?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
Why c language is called c?