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


Please Help Members By Posting Answers For Below Questions

I came across some code that puts a (void) cast before each call to printf. Why?

671


How can you tell whether two strings are the same?

821


What does the error message "DGROUP exceeds 64K" mean?

720


Is null always defined as 0(zero)?

606


Sir i need notes for structure,functions,pointers in c language can you help me please

1941






What is cohesion and coupling in c?

585


What’s a signal? Explain what do I use signals for?

599


How will you divide two numbers in a MACRO?

702


Explain what is the advantage of a random access file?

651


Explain how do you search data in a data file using random access method?

687


How to find a missed value, if you want to store 100 values in a 99 sized array?

810


What is the difference between printf and scanf )?

585


what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555

2528


Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop

1707


What is use of pointer?

583