How many pointers (*) are allowed in a single variable?
Let's consider the following example.
int a = 10;
int *p = &a;
Similarly we can have
int **q = &p;
int ***r = &q;
and so on.
For example,
int ****************zz;
转载于:https://stackoverflow.com/questions/10087113/how-many-levels-of-pointers-can-we-have