🎴 Flashcard Mode

Java and C++ Programming Quiz

Card1 / 19
Mastered0
Review0
QuestionClick to flip

We can assign NULL to const pointer after initializing once.

AnswerClick to flip back
A
False
💡 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.

Change Mode