I have two declare of pointer:
Pointer *a,*b,*c;
int i=5;
*b=i;
a=b;
c=&b;
at line (a=b) mean a will point to what b point (mean point to int i)
at line (c=&b) mean c will have address of b, mean c will be pointer to pointer b. So, does it same with
Pointer** c=b;
Some of the pointer acknowledge I don't sure. so who help me, please.
thanks :)