[Solved] What does “*&n” mean in double-pointer c++? [closed]


*&n is equivalent to n. Thus the value of n is printed out.

The value of n is the address of the variable p that is a pointer to int.

3

solved What does “*&n” mean in double-pointer c++? [closed]