main()
{
float f1=10.5;
double db1=10.5
if(f1==db1)
printf("a");
else
printf("b")
}

Answers were Sorted based on User's Feedback



main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("..

Answer / sweet angel

the answer is a.

Is This Answer Correct ?    12 Yes 1 No

main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("..

Answer / jayashree

b

Is This Answer Correct ?    4 Yes 5 No

Post New Answer

More C Interview Questions

What are the key features in c programming language?

0 Answers  


How do you use a 'Local Block'?

0 Answers   Ericsson,


What is the difference between %d and %i?

0 Answers  


Explain about C function prototype?

0 Answers  


What are c identifiers?

0 Answers  






What is mean by data types in c?

0 Answers  


how we can make 3d venturing graphics on outer interface

1 Answers   Microsoft,


C program to find frequency of each character in a text file?

6 Answers  


What is signed and unsigned?

0 Answers  


can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?

2 Answers  


where are auto variables stored? What are the characteristics of an auto variable?

0 Answers  


Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.

2 Answers  


Categories