| 1. |
What Is A Pointer On Pointer? |
|
Answer» It's a pointer variable which can HOLD the address of another pointer variable. It de-refers twice to point to the data held by the DESIGNATED pointer variable. var a int It's a pointer variable which can hold the address of another pointer variable. It de-refers twice to point to the data held by the designated pointer variable. var a int |
|