What does `const` mean for a pointer?
Question 1
Q1. What does `const` mean for a pointer?
Answer: It depends on the placement of const
Explanation: const can be applied to either the pointer, the data it points to, or both, depending on its placement.