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
hi send me sample aptitude papers of cts?
How can I send mail from within a c program?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Do you have any idea about the use of "auto" keyword?
Why does everyone say not to use scanf? What should I use instead?
Explain what will the preprocessor do for a program?
Define and explain about ! Operator?
How can a program be made to print the name of a source file where an error occurs?
In which language linux is written?
What is sizeof array?
Can we declare variable anywhere in c?
What is floating point constants?
What is indirection? How many levels of pointers can you have?
write a program to create a sparse matrix using dynamic memory allocation.
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions