Q. What will be the output of sizeof('A')?
β
Correct Answer: (C)
4
Explanation: 'A' is an int literal in C, so sizeof('A') returns 4 bytes typically.