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);
}
|
For the following code snippet I get the output as
|
||||
|
|
|
|
|||
|
|
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. |
|||
|
|
|
This is because your code evaluates as:
|
|||||
|
|
|
what output did you want? In C,
|
|||
|
|
|
|||
|
|
|
It operates as follows:
Since |
||||
|
|