Multiple choice technology programming languages

We can assign NULL to const pointer after initializing once.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

A const pointer (int* const) cannot be reassigned after initialization, including assignment to NULL. The const qualifier applies to the pointer itself, not the data it points to. Once initialized to an address, the pointer value is fixed.