vote up 0 vote down star

Duplicate:

Uses for multiple levels of pointer dereferences

I have a question about C and pointers.

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.

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.

flag

closed as exact duplicate by David Thornley, mmyers, Chuck, TStamper, Charles Bailey May 18 at 21:43

6 Answers

vote up 1 vote down

A vector is *, an array is **, a volume is ***, a timespace is ****.

link|flag
vote up 1 vote down
  • A 1D array is a pointer to a block of memory.
  • A 2D array is a pointer to a block of 1D arrays, which is just a list of pointers.
  • A 3D array is... yes, a pointer to a pointer to a pointer.

Example 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;
}
link|flag
vote up 0 vote down

Kinda duplicate.

link|flag
3  
Kind of a comment, not an answer. – mmyers May 18 at 21:32
Hmm.. Why could I not find that in all my searches :( – Alan H May 18 at 21:35
Yes, please don't put such things as an answer. That belongs as a comment on a question. – litb May 18 at 23:01
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

Pointers are arrays in a sense. Here's a straightforward scenario. Say you were building a text editor. Lines and columns are both dynamic.

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:

char **lines;

You would have to malloc your line first before adding characters, but this could provide a very crude means of an editor.

lines = malloc(num_of_lines_in_my_file);
lines[0] = malloc(num_of_chars_for_line_1);

Certainly not beautiful code, but hopefully it helps a bit to answer the question.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.