What is this operator **?

Asked

Viewed 115 times

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 answer

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

  • I seem to have doubled henhen. I’ve seen in the topic indicated where the answer is more detailed, but thanks anyway!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.