What is the output of this code? int x = 1, y = 1, z = 1; cout << (++x || ++y && ++z); cout << x << y << z; | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is the output of this code? int x = 1, y = 1, z = 1; cout << (++x || ++y && ++z); cout << x << y << z;

I got this question in a quiz and I can't figure out in what order does the conditions are checked. Ans is 1211 why only X's value is changed?

21st Aug 2018, 10:27 AM
Vedansh
Vedansh - avatar
4 Answers
+ 2
Vedansh Mittal yes, answer should be 1211... why : there are two cout statements , out of which first one is to show boolean values... it might have answer 1 or 0 for first cout.. also note that if || (or operator) is there and first condition is passed, other part never gets evaluated... so, ++x is only evaluated and as ++x is not zero, cout prints 1. ++x made x as 2. as only ++x is evaluated, y and z is still 1 and 1. so, output is 1211..
21st Aug 2018, 12:35 PM
Ketan Lalcheta
Ketan Lalcheta - avatar
+ 1
Is the asnwer 1211 or 211? Of it is the former, I don't know. But if it is the latter, then it is because the compiler saw two options. It can increase x or it can increase both y and z. Since there were no conditions to be satisfied, for it to choose one or the other, it chose to increase the first. If the code was ++x && ++y && ++z, all would be increased.
21st Aug 2018, 11:04 AM
Teddy Okello
Teddy Okello - avatar
0
ok..... well the answer is 1211 because there are two cout statements and the initial '1' is printed because if the first one
21st Aug 2018, 11:27 AM
Vedansh
Vedansh - avatar
0
yeah... thanks to both of you
21st Aug 2018, 1:03 PM
Vedansh
Vedansh - avatar