Multiple choice Consider the declaration. int a = 5, b = &a; printf(“%d”, a*b); prints 25 garbage 0 error message Reveal answer Fill a bubble to check yourself A Correct answer Explanation a is 5, b is a pointer to a. *b is the value at the address b, which is 5. So a * *b is 5 * 5 = 25.