Comment on the following C statement.
const int *ptr;
const int *ptr;
A. You cannot change the value pointed by ptr
B. You cannot change the pointer ptr itself
C. You May or may not change the value pointed by ptr
D. You can change the pointer as well as the value pointed by it
Answer: Option A
Join The Discussion