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 is pointer in c?
What is volatile c?
Describe static function with its usage?
Explain what is the advantage of a random access file?
Is a pointer a kind of array?
What does %p mean?
What are bitwise shift operators in c programming?
What is the process of writing the null pointer?
What is the difference between c and python?
What is %s and %d in c?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What is the difference between memcpy and memmove?
Do you know the purpose of 'register' keyword?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is the purpose of 'register' keyword?