What is the output of `printf('%d %d', sizeof(int), sizeof(char));`?
Question 1
Q1. What is the output of `printf('%d %d', sizeof(int), sizeof(char));`?
Answer: 4 1
Explanation: Typical sizes for int and char are 4 and 1 bytes, respectively.