Pointer to a pointer to a pointer - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-11-29T10:34:54Z http://stackoverflow.com/feeds/question/879925 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/879925/pointer-to-a-pointer-to-a-pointer 0 Pointer to a pointer to a pointer [closed] Alan H 2009-05-18T21:24:05Z 2009-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#879940 0 Answer by GMan for Pointer to a pointer to a pointer GMan 2009-05-18T21:28:23Z 2009-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#879941 0 Answer by Cade Roux for Pointer to a pointer to a pointer Cade Roux 2009-05-18T21:28:41Z 2009-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#879949 0 Answer by James for Pointer to a pointer to a pointer James 2009-05-18T21:31:22Z 2009-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#879956 1 Answer by Stephan202 for Pointer to a pointer to a pointer Stephan202 2009-05-18T21:33:35Z 2009-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 &lt;stdio.h&gt; #include &lt;stdlib.h&gt; 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#879958 0 Answer by billb for Pointer to a pointer to a pointer billb 2009-05-18T21:34:55Z 2009-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#879961 1 Answer by Thomas L Holaday for Pointer to a pointer to a pointer Thomas L Holaday 2009-05-18T21:36:05Z 2009-05-18T21:36:05Z <p>A vector is *, an array is **, a volume is ***, a timespace is ****.</p>