0
What is this operator **
, and what is it for? Every time I come across a piece of code in C++ with this operator. And if it is related to *
, what’s the difference?
0
What is this operator **
, and what is it for? Every time I come across a piece of code in C++ with this operator. And if it is related to *
, what’s the difference?
1
Double pointer operator http://www.inf.pucrs.br/~pine/PRGSWB/pointers.html
In this case it can be an array of pointers, for example char** is a list of words.
Note: In other languages some language compilers that have no pointer, link as exponential operator
Browser other questions tagged c++ pointer operators
You are not signed in. Login or sign up in order to post.
I seem to have doubled henhen. I’ve seen in the topic indicated where the answer is more detailed, but thanks anyway!
– JOsinaldo Wifi