What is the output of the expression `printf('%d', sizeof('a'))` in C?
Q1. What is the output of the expression `printf('%d', sizeof('a'))` in C?
Answer: 4
Explanation: In C, the size of a character literal is equal to the size of an int, typically 4 bytes.