Login
Remember
Register
Ask a Question
What is pointer to a pointer in C Language?
0
votes
asked
Mar 17, 2020
in
C Plus Plus
by
rajeshsharma
What is pointer to a pointer in C Language?
#c-language-pointers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 17, 2020
by
Robindeniel
If a pointer variable points another pointer value. Such a situation is known as a pointer to a
pointer.
Example:
int *p1,**p2,v=10;
P1=&v; p2=&p1;
Here p2 is a pointer to a pointer.
...