0

Help in output

C problem anyone please explain me this output https://www.sololearn.com/post/224346/?ref=app

21st Jan 2020, 12:53 PM
Jun Min Suk I
Jun Min Suk I - avatar
7 ответов
+ 2
Jun Min Suk I Let x = 10, y = 20 and z = 5 x < y < z is evaluated left to right here, because the two operator are the same ( '<' less than operator ). Had they been different, operator precedence and/or associativity matters. x < y < z First x < y is processed, and then the result will be compared against z. In the following example I put parentheses to emphasize the prioritized subexpression. ( x < y ) < z (10 < 20) < 5 // 10 < 20 => true (1) (1) < 5 // 1 < 5 => true (1) 1 // final result P.S. Please specify a relevant language (C apparently) in your tags 👍 Hth, cmiiw
21st Jan 2020, 2:00 PM
Ipang
+ 1
Can you check if ita working now Ipang
21st Jan 2020, 1:46 PM
Jun Min Suk I
Jun Min Suk I - avatar
+ 1
Okay i will be careful next time thank you i understand it
21st Jan 2020, 2:10 PM
Jun Min Suk I
Jun Min Suk I - avatar
0
Jun Min Suk I Please move post link into the question Description. Links doesn't work if you put them in the question title or tags. Put relevant language in the tags instead 👍
21st Jan 2020, 1:26 PM
Ipang
0
Sorry i dont know how to drag
21st Jan 2020, 1:44 PM
Jun Min Suk I
Jun Min Suk I - avatar
0
Thank you for understanding Jun Min Suk I 🙏
21st Jan 2020, 2:21 PM
Ipang
0
I think ans.should be 0 Because no mathematical meaning in i=x<y<z this equation with your input
23rd Jan 2020, 1:33 AM
Giriraj Yalpalwar
Giriraj Yalpalwar - avatar