What is the output of `int x = 10; printf('%d', x++);`?
Q1. What is the output of `int x = 10; printf('%d', x++);`?
Answer: 10
Explanation: Post-increment operator returns the current value before incrementing. NET computer science MCQs often test this core concept.