Q:

WHAT IS CONST POINTER IN C?

belongs to collection: C INTERVIEW QUESTIONS AND ANSWERS

0

WHAT IS CONST POINTER IN C?

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C INTERVIEW QUESTIONS AND ANSWERS

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
IS POINTER ARITHMETIC A VALID ONE? WHICH ARITHMETI... >>
<< WHEN CAN VOID POINTER AND NULL POINTER BE USED IN ...