Multiple choice void main() { int a= 100; void *j= &a; int *k= j; printf("%u", *k); } Runtime error Compiler error Garbage value Address 100 Reveal answer Fill a bubble to check yourself E Correct answer Explanation Void pointer can hold address of any data type without type casting. Any pointer can hold void pointer without type casting. This program prints the result = 100.