Multiple choice general knowledge Output? main() { int x=20,y=35; x=y++ + x++; y= ++y + ++x; printf(“%d%dn”,x,y); } 5794 5792 5744 5694 Reveal answer Fill a bubble to check yourself A Correct answer Explanation Tracing: x=20, y=35. x=y+++x++ uses original values: x=35+20=55, then y++ makes y=36, x++ makes x=56. y=++y+++x: y becomes 37, x becomes 57, then y=37+57=94. Output: 57 and 94.