What is the output of `printf('%d %d', 5/2, -5/2)`?
Question 1
Q1. What is the output of `printf('%d %d', 5/2, -5/2)`?
Answer: 2 -3
Explanation: Integer division truncates towards zero, so 5/2 = 2 and -5/2 = -2.