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
| ||||
|
feedback
|
|
| |||
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. | |||
|
feedback
|
|
This is because your code evaluates as:
| |||||
|
feedback
|
|
what output did you want? In C,
| |||
|
feedback
|
| |||
|
feedback
|
|
It operates as follows:
Since | ||||
|
feedback
|