Q. What will be the output of sizeof('A')? (A) 1 (B) 2 (C) 4 (D) Depends on compiler ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (C) 4 Explanation: 'A' is an int literal in C, so sizeof('A') returns 4 bytes typically.