What is the output of `int x = 5; x = x++ + ++x; printf('%d', x);`?
Q1. What is the output of `int x = 5; x = x++ + ++x; printf('%d', x);`?
Answer: Undefined Behavior
Explanation: The expression involves multiple side effects on the same variable between sequence points, leading to undefined behavior.