int main(){
float f=8.0;
if(f==8.0)
printf("good");
else
printf("bad");
}
what is the answere and explain it?

Answer Posted / pratima

BAD

Is This Answer Correct ?    10 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are disadvantages of C language.

649


What is #include in c?

600


Explain Basic concepts of C language?

646


What does void main () mean?

733


Can we declare a function inside a function in c?

590






Write a program to generate the Fibinocci Series

666


How can you invoke another program from within a C program?

618


What is a struct c#?

601


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

720


What does main () mean in c?

615


we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?

804


What is the difference between union and structure in c?

576


What is the purpose of 'register' keyword?

691


What is the use of typedef in c?

587


What is wild pointer in c with example?

575