WHAT IS CONST POINTER IN C?
Const pointer is a pointer that can’t change the address of the variable that is pointing to.Once const pointer is made to point one variable, we can’t change this pointer to point to any other variable. This pointer is called const pointer.
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Const pointer is a pointer that can’t change the address of the variable that is pointing to.
need an explanation for this answer? contact us directly to get an explanation for this answerOnce const pointer is made to point one variable, we can’t change this pointer to point to any other variable. This pointer is called const pointer.