Q. What is the output of: printf("%p", NULL);
β
Correct Answer: (D)
Depends on compiler
Explanation: NULL is usually printed as 0, 0x0, or (nil) depending on implementation.