What is the output of `printf('%lu', sizeof('Hello'));`?
Question 1
Q1. What is the output of `printf('%lu', sizeof('Hello'));`?
Answer: 6
Explanation: String literal 'Hello' includes a null terminator, making its size 6 bytes.