What is the output of the below code snippet?
#include main() { unsigned x = 5, y=&x, *p = y+0; printf("%u",*p); }
Answer: D
5, as p holds the address of x which is y+0