Pointer to a pointer to a pointer - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-11-29T10:34:54Zhttp://stackoverflow.com/feeds/question/879925http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/879925/pointer-to-a-pointer-to-a-pointer0Pointer to a pointer to a pointer [closed]Alan H2009-05-18T21:24:05Z2009-05-18T21:41:25Z
<p><strong>Duplicate:</strong></p>
<blockquote>
<p><a href="http://stackoverflow.com/questions/758673/uses-for-multiple-levels-of-pointer-dereferences">Uses for multiple levels of pointer dereferences</a></p>
</blockquote>
<p>I have a question about C and pointers.</p>
<p>I know when I would need a pointer, and even when I might need a pointer to a pointer.
An example would be if I had a linked list, and I wanted to write a function that would remove an element of that list, to do so I would need to send a pointer to the pointer of the head of the list.</p>
<p>How about a pointer to a pointer to a pointer? Would there ever be a situation where that would be needed? Extra points if you have some sample code so I can really get my head around it.</p>
http://stackoverflow.com/questions/879925/pointer-to-a-pointer-to-a-pointer/879940#8799400Answer by GMan for Pointer to a pointer to a pointerGMan2009-05-18T21:28:23Z2009-05-18T21:28:23Z<p><a href="http://stackoverflow.com/questions/758673/uses-for-multiple-levels-of-pointer-dereferences">Kinda duplicate.</a></p>
http://stackoverflow.com/questions/879925/pointer-to-a-pointer-to-a-pointer/879941#8799410Answer by Cade Roux for Pointer to a pointer to a pointerCade Roux2009-05-18T21:28:41Z2009-05-18T21:28:41Z<p>Extremely rare, but you could imagine some kind of reference counting scenario, where you needed to get to some other object's address of pointers and change it.</p>
http://stackoverflow.com/questions/879925/pointer-to-a-pointer-to-a-pointer/879949#8799490Answer by James for Pointer to a pointer to a pointerJames2009-05-18T21:31:22Z2009-05-18T21:31:22Z<p>What about a function to remove an element from a linked list in an array of linked lists, or a function to remove an element from a linked list in an array of arrays of link... you get my point.</p>
http://stackoverflow.com/questions/879925/pointer-to-a-pointer-to-a-pointer/879956#8799561Answer by Stephan202 for Pointer to a pointer to a pointerStephan2022009-05-18T21:33:35Z2009-05-18T21:41:25Z<ul>
<li>A 1D array is a pointer to a block of memory.</li>
<li>A 2D array is a pointer to a block of 1D arrays, which is just a list of pointers.</li>
<li>A 3D array is... yes, a pointer to a pointer to a pointer.</li>
</ul>
<p>Example code:</p>
<pre><code>#include <stdio.h>
#include <stdlib.h>
int
main(void)
{
int b[1][1][1] = {{{42}}};
/* Both of these print 42. */
printf("%d\n", b[0][0][0]);
printf("%d\n", ***b);
return EXIT_SUCCESS;
}
</code></pre>
http://stackoverflow.com/questions/879925/pointer-to-a-pointer-to-a-pointer/879958#8799580Answer by billb for Pointer to a pointer to a pointerbillb2009-05-18T21:34:55Z2009-05-18T21:34:55Z<p>Pointers are arrays in a sense. Here's a straightforward scenario. Say you were building a text editor. Lines and columns are both dynamic.</p>
<p>You might have an "array" of lines, and since they're dynamic, that would be a pointer. Then your columns would also be dynamic and might be contained inside of your line array. So in essence:</p>
<pre><code>char **lines;
</code></pre>
<p>You would have to malloc your line first before adding characters, but this could provide a very crude means of an editor.</p>
<pre><code>lines = malloc(num_of_lines_in_my_file);
lines[0] = malloc(num_of_chars_for_line_1);
</code></pre>
<p>Certainly not beautiful code, but hopefully it helps a bit to answer the question.</p>
http://stackoverflow.com/questions/879925/pointer-to-a-pointer-to-a-pointer/879961#8799611Answer by Thomas L Holaday for Pointer to a pointer to a pointerThomas L Holaday2009-05-18T21:36:05Z2009-05-18T21:36:05Z<p>A vector is *, an array is **, a volume is ***, a timespace is ****.</p>