C Programming - Declarations and Initializations - Discussion

Discussion Forum : Declarations and Initializations - Find Output of Program (Q.No. 7)
7.
What is the output of the program
#include<stdio.h>
int main()
{
    int x = 10, y = 20, z = 5, i;
    i = x < y < z;
    printf("%d\n", i);
    return 0;
}
0
1
Error
None of these
Answer: Option
Explanation:
Since x < y turns to be TRUE it is replaced by 1. Then 1 < z is compared and to be TRUE. The 1 is assigned to i.
Discussion:
37 comments Page 4 of 4.

Shiva said:   1 decade ago
Can anyone solve this one?

int main()
{
int x = 10, y = 20, z = 5, i;
i = x >y > z;
printf("%d\n", i);
return 0;
}

Chelladurai said:   1 decade ago
Ya it is really good explanation.

Wikiok said:   1 decade ago
1. i=x<y<z
1. i=((10<20) < 5)
2. i=((1) < 5)
3. i=(1)

(True=1; False=0)

Gangadhararao said:   1 decade ago
What is the output of the program

#include<stdio.h>
int main()
{
int x = 10, y = 20, z = 5, i;
i = x < y < z;
printf("%d\n", i);
return 0;
}

Gow is the ouput becomes 1 ?

Deepu said:   1 decade ago
Ya < symbol have left associate. So, it complies from left to right.

The ans is "1".

Sugu said:   1 decade ago
How is it possible?

Jayanth said:   2 decades ago
Is it correct explaination?


Post your comments here:

Your comments will be displayed after verification.