What is the output of `printf('%d', sizeof(void *))`?
Question 1
Q1. What is the output of `printf('%d', sizeof(void *))`?
Answer: 4
Explanation: Size of a void pointer is typically equal to the word size of the system, often 4 bytes on 32-bit systems.