What is the output of `printf('%d', sizeof('a'));` in C?
Question 1
Q1. What is the output of `printf('%d', sizeof('a'));` in C?
Answer: 4
Explanation: In C, character literals are treated as integers, so 'a' is an int, typically 4 bytes on most systems.