Home » C Programming » Pointers » Question
  1. Comment on the following C statement.
    const int *p;
    1. You can change the pointer as well as the value pointed by it
    2. You May or maynot change the value pointed by p
    3. You cannot change the pointer p itself
    4. You cannot change the value pointed by p
    5. None of these
Correct Option: D

You cannot change the value pointed by p



Your comments will be displayed only after manual approval.