For the following code snippet I get the output as 1. I want to know how it came?

void main()
{
int x=10,y=20,z=5,i;
i=x<y<z;
printf("%d",i);
}
link|improve this question

56% accept rate
feedback

7 Answers

up vote 6 down vote accepted

i=x<y<z;, gets interpreted as i=(x<y)<z, which in turn gets interpreted as i=1<z, which evaluates to 1.

link|improve this answer
Seems to be a rather common mistake, at least GCC (probably other compilers, too) prints out a warning, if warnings are enabled: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning – Saytonurn Mar 28 '11 at 17:06
feedback

10 is less than 20, resulting in 1, and 1 is less than 5, resulting in 1. C doesn't chain relational operators as some other languages do.

link|improve this answer
feedback

This is because your code evaluates as:

void main()
{
    int x=10,y=20,z=5,i;
    i=((x<y)<z); //(x<y) = true = 1, (1 < 5) = true
    printf("%d",i);
}
link|improve this answer
How can you change the code and talk about evaluation? – Acme Mar 28 '11 at 13:56
I set braces for illustrate how compiler interpreted code – Eugene Burtsev Mar 28 '11 at 14:01
feedback

what output did you want?

In C,

i = 2 < 3; //i == 1.
i = 4 < 3; //i == 0.

If condition evaluates to false, value returned is 0, and 1 otherwise.
Also, x < y < z will be evaluated as ((x < y) < z).

link|improve this answer
feedback
x<y // 1 as (10 < 20) will return 1
result of(x<y)<z // 1 as (1<5) will return 1 
link|improve this answer
feedback

Check this very very similar Example

link|improve this answer
feedback

It operates as follows: Since < is a logical expression, x<y i.e 10<20 is true i.e 1. So it becomes 1<z i.e 1<5 which is again true i.e. 1 which is assigned to i. So i is 1.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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