What will be output of following program ? #include int main() { int a = 10; void *p = &a; int *ptr = p; printf(“%u”,*ptr); return 0; }

A) 10

B) Address

C) 2

D) Compilation error

View Answer
Option – A.