Hello, i know that * is a pointer, also i know for ** is a pointer to a pointer...
i can understand that
int *x;
int y;
x=&y;
but last days i see something like this, and is a little hard to me to understand it.
void **getxyz()
{
int **x;
;;...bla bla...
}
why to make a point to point?, and what about usage? where we use it? i need a simple explanation.
*YG: my question have to do more with functions, first time i saw a function-pointer , i know only for variables pointers...