The types defined the semantics of how you interact the data, you should not ever assign a pointer to int directly to a pointer to a pointer of an int, for example. However you might be wondering a use case of using a ** type.
For an example, look at this code I wrote:
#include <stdio.h>
#include <stdlib.h>
typedef struct fooStruct
{
int a;
int b;
} FOO_STRUCT;
void multiReturns(int *a, FOO_STRUCT **b) {
*a = 42;
//b is a pointer that points to a FOO_STRUCT pointer
if(*b) {
free(*b);
printf("Proof that we deleted memory.\n");
}
//This changes what b points to in main.
*b = (FOO_STRUCT *)malloc(sizeof(FOO_STRUCT));
printf("The new value of *b, this may or maynot be the same as before: %p\n", *b);
//Parens for clarity, We dereferenced the pointer to the
//FOO_STRUCT pointer. Then, we derefrence the FOO_STRUCT
//pointer to access its members.
(*(*b)).a = 59;
(*(*b)).b = 42;
return;
}
int main(int argc, char **argv)
{
int a = 0;
FOO_STRUCT *b = (FOO_STRUCT *)malloc(sizeof(FOO_STRUCT));
(*b).a = 1;
(*b).b = 2;
printf("BEFORE a = %d\n", a);
printf("BEFORE b = %p\n", b);
printf("BEFORE *b.a = %d\n", (*b).a);
printf("BEFORE *b.b = %d\n", (*b).b);
multiReturns(&a, &b);
printf("AFTER a = %d\n", a);
//The value AFTER b might have changed, depends on allocation factors..
printf("AFTER b = %p\n", b);
printf("AFTER *b.a = %d\n", (*b).a);
printf("AFTER *b.b = %d\n", (*b).b);
free(b);
return 0;
}
The output on my machine:
[hart@katamari tests]$ gcc pointers.c -o ptr
[hart@katamari tests]$ ./ptr
BEFORE a = 0
BEFORE b = 0x19b41010
BEFORE *b.a = 1
BEFORE *b.b = 2
Proof that we deleted memory.
The new value of *b, this may or maynot be the same as before: 0x19b41010
AFTER a = 42
AFTER b = 0x19b41010
AFTER *b.a = 59
AFTER *b.b = 42
There are functions and the standard library, and elsewhere, that take a pointer to a pointer of a type. As long as a parameter of ** is not const qualified, it indicates that the value can be changed and it may, or maynot point to the same allocated memory. In my example I deleted the old pointer, but that is function specific you need to watch out for. Also, if the caller is responsible to delete any new memory returned could also be function specific, so read the documentation of any functions you see that use these and make sure you document any that you write well.