I am unable to get "reference to a pointer".
Here:

char*p = "hello";
char*&k = p;


while creating reference to a pointer why we have to write *&k , why not &*k?