Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
#include <stdio.h>

int main(){

    float a = 0.7;
    if(a < 0.7)
            printf("C");
    else
            printf("C++");

   return 0;
}

Its giving the output "C". Please explain how ?

share|improve this question
Can you reformat the code? – C Johnson Jun 1 '11 at 7:10
1  
Yep, < is a relational operator. – Jeff Mercado Jun 1 '11 at 7:11
"What is the question?" – user166390 Jun 1 '11 at 7:11
4  
0.7 is a double, not a float and see floating-point-gui.de – nbt Jun 1 '11 at 7:14

closed as not a real question by Jeff Mercado, Merlyn Morgan-Graham, Michael Foukarakis, Neil Butterworth, Jim Lewis Jun 1 '11 at 7:11

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

a<0.7?printf("c");:printf("c++");
share|improve this answer
2  
That does not answer the question, or solve the problem, and is not valid C code either, even corrected it is hardly good practice either. – Clifford Jun 1 '11 at 22:18

Not the answer you're looking for? Browse other questions tagged or ask your own question.